8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
const command = new Deno.Command("deno bundle", {});
|
|
const decode = new TextDecoder("utf-8");
|
|
|
|
const output = await command.output();
|
|
|
|
|
|
|
|
console.assert() |