OpenClawBot / openclaw.mjs
darkfire514's picture
Upload 43 files
9e61dbf verified
raw
history blame contribute delete
305 Bytes
#!/usr/bin/env node
import module from "node:module";
// https://nodejs.org/api/module.html#module-compile-cache
if (module.enableCompileCache && !process.env.NODE_DISABLE_COMPILE_CACHE) {
try {
module.enableCompileCache();
} catch {
// Ignore errors
}
}
await import("./dist/entry.js");