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/clean.js | |
| parent | 34c1b5811a01ad184a8c90fee829216193684da0 (diff) | |
Include companion VS Code extension VSIX as part of build/release (#4254)
Diffstat (limited to 'scripts/clean.js')
| -rw-r--r-- | scripts/clean.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/clean.js b/scripts/clean.js index d53d097e..833f4842 100644 --- a/scripts/clean.js +++ b/scripts/clean.js @@ -45,3 +45,11 @@ for (const workspace of rootPackageJson.workspaces) { rmSync(join(pkgDir, 'dist'), RMRF_OPTIONS); } } + +// Clean up vsix files in vscode-ide-companion +const vsixFiles = globSync('packages/vscode-ide-companion/*.vsix', { + cwd: root, +}); +for (const vsixFile of vsixFiles) { + rmSync(join(root, vsixFile), RMRF_OPTIONS); +} |
