Include companion VS Code extension VSIX as part of build/release (#4254)

This commit is contained in:
Shreya Keshive
2025-07-16 15:06:39 -04:00
committed by GitHub
parent 34c1b5811a
commit e4ed1aabac
6 changed files with 24 additions and 1 deletions

View File

@@ -37,4 +37,12 @@ for (const file of sbFiles) {
copyFileSync(join(root, file), join(bundleDir, basename(file)));
}
// Find and copy all .vsix files from packages to the root of the bundle directory
const vsixFiles = glob.sync('packages/vscode-ide-companion/*.vsix', {
cwd: root,
});
for (const file of vsixFiles) {
copyFileSync(join(root, file), join(bundleDir, basename(file)));
}
console.log('Assets copied to bundle/');