Update versioning script to also bump version for companion extension so they stay in sync (#6075)

This commit is contained in:
Shreya Keshive 2025-08-14 14:30:16 +00:00 committed by GitHub
parent dd55a82a28
commit e74dc4d0e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ if (!versionType) {
run(`npm version ${versionType} --no-git-tag-version --allow-same-version`); run(`npm version ${versionType} --no-git-tag-version --allow-same-version`);
// 3. Get all workspaces and filter out the one we don't want to version. // 3. Get all workspaces and filter out the one we don't want to version.
const workspacesToExclude = ['gemini-cli-vscode-ide-companion']; const workspacesToExclude = [];
const lsOutput = JSON.parse( const lsOutput = JSON.parse(
execSync('npm ls --workspaces --json --depth=0').toString(), execSync('npm ls --workspaces --json --depth=0').toString(),
); );