UNPKG

291 BJavaScriptView Raw
1#!/usr/bin/env node --experimental-modules --experimental-specifier-resolution=node
2import { build } from "./scripts/build";
3async function run() {
4 const [command, ...args] = process.argv.slice(2);
5 if (command === "build") {
6 await build(args);
7 return;
8 }
9}
10run();