fix: gemini-cli-vscode-ide-companion's package script (#7555)

This commit is contained in:
ZHAO Jin-Xiang 2025-09-03 21:32:21 +08:00 committed by GitHub
parent 044c3a0e14
commit 93ec574f68
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2169 additions and 5 deletions

2169
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -116,6 +116,7 @@
"@types/vscode": "^1.99.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/vsce": "^3.6.0",
"esbuild": "^0.25.3",
"eslint": "^9.25.1",
"npm-run-all": "^4.1.5",

View file

@ -24,7 +24,7 @@ import { fileURLToPath } from 'node:url';
const __dirname = dirname(fileURLToPath(import.meta.url));
const root = join(__dirname, '..');
execSync('npx --yes @vscode/vsce package --no-dependencies', {
execSync('npm --workspace=gemini-cli-vscode-ide-companion run package', {
stdio: 'inherit',
cwd: join(root, 'packages', 'vscode-ide-companion'),
cwd: root,
});