mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 18:17:48 -05:00
25 lines
475 B
Text
25 lines
475 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
"steps": [{
|
||
|
"if": "unix",
|
||
|
"args": "compile --output main main.js",
|
||
|
"output": "[WILDCARD]"
|
||
|
}, {
|
||
|
"if": "unix",
|
||
|
"commandName": "./main",
|
||
|
"args": [],
|
||
|
"output": "output.out",
|
||
|
"exitCode": 0
|
||
|
}, {
|
||
|
"if": "windows",
|
||
|
"args": "compile --output main.exe main.js",
|
||
|
"output": "[WILDCARD]"
|
||
|
}, {
|
||
|
"if": "windows",
|
||
|
"commandName": "./main.exe",
|
||
|
"args": [],
|
||
|
"output": "output.out",
|
||
|
"exitCode": 0
|
||
|
}]
|
||
|
}
|