aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-22 02:13:25 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-22 02:13:25 -0800
commit3cf229a89824d8d0820724c14c3839cd6ac39940 (patch)
tree1de7bf286a2faf70e5d6d73211fe995a10c430b0
parente94172255d64ad868830d150a540ed606c512b53 (diff)
downloadbun-3cf229a89824d8d0820724c14c3839cd6ac39940.tar.gz
bun-3cf229a89824d8d0820724c14c3839cd6ac39940.tar.zst
bun-3cf229a89824d8d0820724c14c3839cd6ac39940.zip
Update launch.json
-rw-r--r--.vscode/launch.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 5d4b48c75..b70542414 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -42,6 +42,18 @@
{
"type": "lldb",
"request": "launch",
+ "name": "bun run (hot)",
+ "program": "bun-debug",
+ "args": ["--hot", "${file}"],
+ "cwd": "${file}/../../",
+ "env": {
+ "FORCE_COLOR": "1"
+ },
+ "console": "internalConsole"
+ },
+ {
+ "type": "lldb",
+ "request": "launch",
"name": "bun run",
"program": "bun-debug",
"args": ["check.tsx", "-c"],
@@ -110,6 +122,15 @@
{
"type": "lldb",
"request": "launch",
+ "name": "Build zig unit test",
+ "program": "make",
+ "args": ["build-unit", "${file}"],
+ "cwd": "${workspaceFolder}",
+ "console": "internalConsole"
+ },
+ {
+ "type": "lldb",
+ "request": "launch",
"name": "Run zig unit test",
"program": "${workspaceFolder}/zig-out/bin/test",
"args": ["abc"],