UNPKG

227 BJavaScriptView Raw
1#!/usr/bin/env 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();