perf: use tsgo and parallelize builds, excluding a2a-server

This commit is contained in:
mkorwel
2026-04-24 18:13:20 +00:00
parent 4815efd415
commit ed511df690
3 changed files with 2 additions and 2 deletions
+1
View File
@@ -106,6 +106,7 @@
"@types/react-dom": "^19.2.0",
"@types/shell-quote": "^1.7.5",
"@types/ws": "^8.18.1",
"@typescript/native-preview": "^7.0.0-dev.20260412.1",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/eslint-plugin": "^1.3.4",
"asciichart": "^1.5.25",
-1
View File
@@ -23,7 +23,6 @@ if (!existsSync(join(root, 'node_modules'))) {
const workspaces = [
'@google/gemini-cli-test-utils',
'@google/gemini-cli-core',
'@google/gemini-cli-a2a-server',
'@google/gemini-cli',
'gemini-cli-vscode-ide-companion',
];
+1 -1
View File
@@ -29,7 +29,7 @@ if (!process.cwd().includes('packages')) {
const packageName = basename(process.cwd());
// build typescript files
execSync('tsc --build', { stdio: 'inherit' });
execSync('tsgo --build', { stdio: 'inherit' });
// Run package-specific bundling if the script exists
const bundleScript = join(process.cwd(), 'scripts', 'bundle-browser-mcp.mjs');