summaryrefslogtreecommitdiff
path: root/scripts/version.js
diff options
context:
space:
mode:
authorShreya Keshive <[email protected]>2025-08-14 14:30:16 +0000
committerGitHub <[email protected]>2025-08-14 14:30:16 +0000
commite74dc4d0e0c42c93d3c18232f55544adcc084de1 (patch)
tree226e3b3799ddd465d032848267b2e765380be46e /scripts/version.js
parentdd55a82a2891fc2e9b197cf491fb8205d1ba9619 (diff)
Update versioning script to also bump version for companion extension so they stay in sync (#6075)
Diffstat (limited to 'scripts/version.js')
-rw-r--r--scripts/version.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/version.js b/scripts/version.js
index 741e6e2e..fc993361 100644
--- a/scripts/version.js
+++ b/scripts/version.js
@@ -35,7 +35,7 @@ if (!versionType) {
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.
-const workspacesToExclude = ['gemini-cli-vscode-ide-companion'];
+const workspacesToExclude = [];
const lsOutput = JSON.parse(
execSync('npm ls --workspaces --json --depth=0').toString(),
);