Skip to content

Commit

Permalink
update launch script
Browse files Browse the repository at this point in the history
  • Loading branch information
eanders-ms committed Nov 4, 2024
1 parent 62c5f26 commit c8c2fa0
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,30 +17,36 @@
"console": "integratedTerminal"
},
{
"name": "codegen2 (pxt-bedrock)",
"name": "pxt ci (pxt-core)",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/built/pxt.js",
"stopOnEntry": false,
"args": [
"ci",
],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"runtimeArgs": [
"run-script",
"vscode:debug"
"--nolazy"
],
"runtimeExecutable": "npm",
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [],
"localRoot": "${workspaceRoot}/../pxt-bedrock/codegen2",
"console": "integratedTerminal"
"env": {
"NODE_ENV": "development"
},
"console": "integratedTerminal",
"sourceMaps": false,
"outFiles": []
},
{
"name": "pxt ci (pxt-core)",
"name": "pxt ci (microbit)",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/built/pxt.js",
"stopOnEntry": false,
"args": [
"ci",
],
"cwd": "${workspaceRoot}",
"cwd": "${workspaceRoot}/../pxt-microbit",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
Expand All @@ -53,15 +59,15 @@
"outFiles": []
},
{
"name": "pxt ci (microbit)",
"name": "pxt ci (bedrock)",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/built/pxt.js",
"stopOnEntry": false,
"args": [
"ci",
],
"cwd": "${workspaceRoot}/../pxt-microbit",
"cwd": "${workspaceRoot}/../pxt-bedrock",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
Expand Down

0 comments on commit c8c2fa0

Please sign in to comment.