Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@biomejs/biome": "2.5.1",
"@commitlint/cli": "21.1.0",
"@commitlint/config-conventional": "21.1.0",
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"commitizen": "4.3.2",
"cz-conventional-changelog": "3.3.0",
"lefthook": "2.1.9",
Expand Down
2 changes: 1 addition & 1 deletion packages/analysis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"write-file-atomic": "8.0.0"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"@types/write-file-atomic": "4.0.3",
"typescript": "6.0.3"
},
Expand Down
9 changes: 5 additions & 4 deletions packages/analysis/src/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ function runGit(cwd: string, args: readonly string[]): Promise<RunResult> {
return new Promise((resolve) => {
execFile("git", [...args], { cwd, maxBuffer: 32 * 1024 * 1024 }, (err, stdout) => {
if (err) {
const code =
typeof (err as NodeJS.ErrnoException & { code?: unknown }).code === "number"
? (err as NodeJS.ErrnoException & { code: number }).code
: 1;
// `ExecException.code` is `string | number | undefined` (a signal
// name or exit status), so read it once and keep only the numeric
// exit code; anything else (a signal, or undefined) fails open as 1.
const rawCode = (err as { code?: unknown }).code;
const code = typeof rawCode === "number" ? rawCode : 1;
resolve({ stdout: String(stdout ?? ""), code });
return;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"@opencodehub/search": "workspace:*",
"@opencodehub/storage": "workspace:*",
"@opencodehub/wiki": "workspace:*",
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"@types/write-file-atomic": "4.0.3",
"tsup": "^8.5.1",
"typescript": "6.0.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/cobol-proleap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@opencodehub/ingestion": "workspace:*"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"clean": "rm -rf dist *.tsbuildinfo"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
8 changes: 4 additions & 4 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
"clean": "rm -rf dist .astro"
},
"dependencies": {
"@astrojs/starlight": "^0.40.0",
"astro": "^6.4.8",
"@astrojs/starlight": "^0.41.1",
"astro": "^7.0.3",
"sharp": "^0.35.2"
},
"devDependencies": {
"playwright": "^1.61.1",
"rehype-mermaid": "^3.0.0",
"starlight-links-validator": "^0.24.1",
"starlight-links-validator": "^0.25.1",
"starlight-llms-txt": "^0.10.0",
"starlight-page-actions": "^0.6.1"
"starlight-page-actions": "^0.6.2"
}
}
2 changes: 1 addition & 1 deletion packages/embedder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"onnxruntime-web": "1.27.0"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/frameworks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"yaml": "2.9.0"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ingestion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"write-file-atomic": "8.0.0"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"@types/spdx-correct": "^3.1.3",
"@types/write-file-atomic": "4.0.3",
"ajv": "8.20.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"zod": "4.4.3"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/pack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@opencodehub/storage": "workspace:*"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/policy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"zod": "4.4.3"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sarif/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"zod": "4.4.3"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/scanners/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@opencodehub/sarif": "workspace:*"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/scip-ingest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@sourcegraph/scip-typescript": "0.4.0"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@opencodehub/storage": "workspace:*"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@opencodehub/core-types": "workspace:*"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/summarizer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"zod": "4.4.3"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"typescript": "6.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/wiki/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"write-file-atomic": "8.0.0"
},
"devDependencies": {
"@types/node": "25.9.3",
"@types/node": "26.0.1",
"@types/write-file-atomic": "4.0.3",
"typescript": "6.0.3"
},
Expand Down
Loading
Loading