12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
const command = new Deno.Command("deno", {
|
|
args:[
|
|
"bundle",
|
|
"--no-lock",
|
|
"--platform=browser",
|
|
"--inline-imports=true",
|
|
"--output=dist/core.js",
|
|
"--minify",
|
|
"scripts/bundle_entry.ts"
|
|
]
|
|
});
|
|
command.outputSync(); |