From e74dc4d0e0c42c93d3c18232f55544adcc084de1 Mon Sep 17 00:00:00 2001 From: Shreya Keshive Date: Thu, 14 Aug 2025 14:30:16 +0000 Subject: [PATCH] Update versioning script to also bump version for companion extension so they stay in sync (#6075) --- scripts/version.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(), );