mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 12:20:42 +00:00
9 lines
299 B
JavaScript
9 lines
299 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import { pathToFileURL } from "node:url";
|
|
import { runBundledPluginAssetHooks } from "./bundled-plugin-assets.mjs";
|
|
|
|
if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
|
|
await runBundledPluginAssetHooks({ phase: "build", plugins: ["canvas"] });
|
|
}
|