chore(vscode): Add `Build & Launch CLI` option to vscode project (#6027)

This commit is contained in:
Richie Foreman 2025-08-12 14:53:11 -04:00 committed by GitHub
parent 4ecfb478b0
commit f34012034c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

4
.vscode/launch.json vendored
View File

@ -7,9 +7,9 @@
{
"type": "node",
"request": "launch",
"name": "Launch CLI",
"name": "Build & Launch CLI",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start"],
"runtimeArgs": ["run", "build-and-start"],
"skipFiles": ["<node_internals>/**"],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",

View File

@ -24,6 +24,7 @@
"auth": "npm run auth:npm && npm run auth:docker",
"generate": "node scripts/generate-git-commit-info.js",
"build": "node scripts/build.js",
"build-and-start": "npm run build && npm run start",
"build:vscode": "node scripts/build_vscode_companion.js",
"build:all": "npm run build && npm run build:sandbox && npm run build:vscode",
"build:packages": "npm run build --workspaces",