Merge remote-tracking branch 'origin/main' into codex/remove-agent-pool-timeout

# Conflicts:
#	plugin/scripts/mcp-server.cjs
#	plugin/scripts/worker-service.cjs
This commit is contained in:
Alex Newman
2026-05-05 14:45:57 -07:00
114 changed files with 182 additions and 28624 deletions
+5 -1
View File
@@ -540,7 +540,11 @@ function runNpmInstallInMarketplace(): void {
if (!existsSync(packageJsonPath)) return;
execSync('npm install --production', {
// --legacy-peer-deps suppresses a known false-positive ERESOLVE between
// tree-sitter@0.21 and @tree-sitter-grammars/* peer ranges. The native
// bindings path is unused (we load .wasm), so the conflict is benign.
// Revisit if real peer constraints are added to the marketplace deps.
execSync('npm install --omit=dev --legacy-peer-deps', {
cwd: marketplaceDir,
stdio: 'pipe',
encoding: 'utf8',