From 3a87712c1a15dac9f0a717b40fbf9e59398177ca Mon Sep 17 00:00:00 2001 From: Shreya Keshive Date: Tue, 12 Aug 2025 17:08:07 -0400 Subject: Launch VS Code IDE Integration (#6063) --- scripts/copy_bundle_assets.js | 8 -------- 1 file changed, 8 deletions(-) (limited to 'scripts') diff --git a/scripts/copy_bundle_assets.js b/scripts/copy_bundle_assets.js index 79d2a080..5a3af3e9 100644 --- a/scripts/copy_bundle_assets.js +++ b/scripts/copy_bundle_assets.js @@ -37,12 +37,4 @@ 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/'); -- cgit v1.2.3