UNPKG

302 BJavaScriptView Raw
1#!/usr/bin/env node
2"use strict";
3Object.defineProperty(exports, "__esModule", { value: true });
4const build_1 = require("./scripts/build");
5async function run() {
6 const [command] = process.argv.slice(2);
7 if (command === "build") {
8 await build_1.build();
9 return;
10 }
11}
12run();