@colbymchenry/codegraph 0.9.2 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/npm-shim.js +4 -1
- package/package.json +7 -7
package/npm-shim.js
CHANGED
|
@@ -31,7 +31,10 @@ try {
|
|
|
31
31
|
if (isWindows) {
|
|
32
32
|
command = require.resolve(pkg + '/node.exe');
|
|
33
33
|
var entry = require.resolve(pkg + '/lib/dist/bin/codegraph.js');
|
|
34
|
-
|
|
34
|
+
// --liftoff-only: keep tree-sitter's WASM grammars off V8's turboshaft tier
|
|
35
|
+
// to avoid the Zone OOM on Node >= 22 (issues #293/#298). The unix launcher
|
|
36
|
+
// passes this too; on Windows we invoke node.exe directly so add it here.
|
|
37
|
+
args = ['--liftoff-only', entry].concat(process.argv.slice(2));
|
|
35
38
|
} else {
|
|
36
39
|
command = require.resolve(pkg + '/bin/codegraph');
|
|
37
40
|
args = process.argv.slice(2);
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colbymchenry/codegraph",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "Local-first code intelligence for AI agents (MCP). Self-contained — bundles its own runtime.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"codegraph": "npm-shim.js"
|
|
7
7
|
},
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"@colbymchenry/codegraph-darwin-arm64": "0.9.
|
|
10
|
-
"@colbymchenry/codegraph-darwin-x64": "0.9.
|
|
11
|
-
"@colbymchenry/codegraph-linux-arm64": "0.9.
|
|
12
|
-
"@colbymchenry/codegraph-linux-x64": "0.9.
|
|
13
|
-
"@colbymchenry/codegraph-win32-arm64": "0.9.
|
|
14
|
-
"@colbymchenry/codegraph-win32-x64": "0.9.
|
|
9
|
+
"@colbymchenry/codegraph-darwin-arm64": "0.9.3",
|
|
10
|
+
"@colbymchenry/codegraph-darwin-x64": "0.9.3",
|
|
11
|
+
"@colbymchenry/codegraph-linux-arm64": "0.9.3",
|
|
12
|
+
"@colbymchenry/codegraph-linux-x64": "0.9.3",
|
|
13
|
+
"@colbymchenry/codegraph-win32-arm64": "0.9.3",
|
|
14
|
+
"@colbymchenry/codegraph-win32-x64": "0.9.3"
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"npm-shim.js",
|