mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
25 lines
503 B
Text
25 lines
503 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
"steps": [{
|
||
|
"if": "unix",
|
||
|
"args": "compile --allow-read --output main main.js",
|
||
|
"output": "compile.out"
|
||
|
}, {
|
||
|
"if": "unix",
|
||
|
"commandName": "./main",
|
||
|
"args": [],
|
||
|
"output": "output.out",
|
||
|
"exitCode": 1
|
||
|
}, {
|
||
|
"if": "windows",
|
||
|
"args": "compile --allow-read --output main.exe main.js",
|
||
|
"output": "compile.out"
|
||
|
}, {
|
||
|
"if": "windows",
|
||
|
"commandName": "./main.exe",
|
||
|
"args": [],
|
||
|
"output": "output.out",
|
||
|
"exitCode": 1
|
||
|
}]
|
||
|
}
|