diff options
| author | Shreya Keshive <[email protected]> | 2025-07-16 15:06:39 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-16 19:06:39 +0000 |
| commit | e4ed1aabac10101a6ad6c25e46e84a3d2091bb88 (patch) | |
| tree | 93ba1ae92559717f43aea23cfc5b8c2de209ecbc /scripts/build.js | |
| parent | 34c1b5811a01ad184a8c90fee829216193684da0 (diff) | |
Include companion VS Code extension VSIX as part of build/release (#4254)
Diffstat (limited to 'scripts/build.js')
| -rw-r--r-- | scripts/build.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/build.js b/scripts/build.js index 2555a750..edf0b3f8 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -33,6 +33,10 @@ if (!existsSync(join(root, 'node_modules'))) { // build all workspaces/packages execSync('npm run generate', { stdio: 'inherit', cwd: root }); execSync('npm run build --workspaces', { stdio: 'inherit', cwd: root }); +execSync('npx --yes @vscode/vsce package --no-dependencies', { + stdio: 'inherit', + cwd: join(root, 'packages', 'vscode-ide-companion'), +}); // also build container image if sandboxing is enabled // skip (-s) npm install + build since we did that above |
