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