mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
22 lines
451 B
Text
22 lines
451 B
Text
{
|
|
"tempDir": true,
|
|
"steps": [{
|
|
"if": "unix",
|
|
"args": "compile --output my-app main/main.ts",
|
|
"output": "[WILDCARD]"
|
|
}, {
|
|
"if": "unix",
|
|
"commandName": "./my-app",
|
|
"args": [],
|
|
"output": "main.out"
|
|
}, {
|
|
"if": "windows",
|
|
"args": "compile --output my-app.exe main/main.ts",
|
|
"output": "[WILDCARD]"
|
|
}, {
|
|
"if": "windows",
|
|
"commandName": "./my-app.exe",
|
|
"args": [],
|
|
"output": "main.out"
|
|
}]
|
|
}
|