UNPKG

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