Files
openclaw/openclaw.mjs
T

15 lines
305 B
JavaScript
Raw Normal View History

2026-01-27 16:00:25 +01:00
#!/usr/bin/env node
2026-01-31 18:31:49 +09:00
import module from 'node:module';
2026-01-27 16:00:25 +01:00
// https://nodejs.org/api/module.html#module-compile-cache
if (module.enableCompileCache && !process.env.NODE_DISABLE_COMPILE_CACHE) {
try {
module.enableCompileCache();
} catch {
// Ignore errors
}
}
2026-01-31 18:31:49 +09:00
await import('./dist/entry.js');