mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 11:41:04 +00:00
Include companion VS Code extension VSIX as part of build/release (#4254)
This commit is contained in:
parent
34c1b5811a
commit
e4ed1aabac
6 changed files with 24 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue