gitnexus 1.3.7 → 1.3.8
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/dist/cli/analyze.js +4 -6
- package/package.json +1 -1
package/dist/cli/analyze.js
CHANGED
|
@@ -311,10 +311,8 @@ export const analyzeCommand = async (inputPath, options) => {
|
|
|
311
311
|
console.log('\n Tip: Run `gitnexus setup` to configure MCP for your editor.');
|
|
312
312
|
}
|
|
313
313
|
console.log('');
|
|
314
|
-
//
|
|
315
|
-
//
|
|
316
|
-
//
|
|
317
|
-
|
|
318
|
-
process.exit(0);
|
|
319
|
-
}
|
|
314
|
+
// KuzuDB's native module holds open handles that prevent Node from exiting.
|
|
315
|
+
// ONNX Runtime also registers native atexit hooks that segfault on some
|
|
316
|
+
// platforms (#38, #40). Force-exit to ensure clean termination.
|
|
317
|
+
process.exit(0);
|
|
320
318
|
};
|
package/package.json
CHANGED