(entry)
| 92 | // avoid the Zone OOM on Node >= 22 (issues #293/#298). The unix bin/codegraph |
| 93 | // launcher already passes it; on Windows we invoke node.exe directly so add it. |
| 94 | function liftoff(entry) { |
| 95 | return ['--liftoff-only', entry].concat(process.argv.slice(2)); |
| 96 | } |
| 97 | |
| 98 | // Download + cache the platform bundle from GitHub Releases. Returns |
| 99 | // {command, args}; exits the process with guidance if it can't. |
no outgoing calls
no test coverage detected