Files
nexu-io--open-design/tools/dev/bin/tools-dev.mjs
T
wehub-resource-sync 070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:00:47 +08:00

14 lines
461 B
JavaScript
Executable File

#!/usr/bin/env node
import { dirname, resolve } from "node:path";
import { fileURLToPath, pathToFileURL } from "node:url";
import { assertFreshToolBuildFromMeta } from "../../../packages/metatool/src/index.ts";
const entryDir = dirname(fileURLToPath(import.meta.url));
const toolRoot = resolve(entryDir, "..");
const distEntry = resolve(toolRoot, "dist/index.mjs");
await assertFreshToolBuildFromMeta(toolRoot);
await import(pathToFileURL(distEntry).href);