This commit is contained in:
tree 2022-01-28 17:09:53 +01:00
rodič 1a9040e0b0
revize 27a53822c8
2 změnil soubory, kde provedl 5 přidání a 2 odebrání

Zobrazit soubor

@ -53,7 +53,7 @@ events:
deno run --unstable --allow-read utils/events.js
schema:
deno run --unstable --allow-read --allow-write utils/schema.js
deno run --unstable --allow-read utils/exec.js schemas
server:
cd dist && python -m SimpleHTTPServer 8000

Zobrazit soubor

@ -6,4 +6,7 @@ await utxo.init();
let cmd = Deno.args[0] || "build";
let args = Deno.args.slice(1) || [];
await utxo[cmd](...args);
const output = await utxo[cmd](...args);
if (output) {
console.log(output);
}