mirror of
https://github.com/denoland/deno.git
synced 2024-12-13 11:02:19 -05:00
28 lines
586 B
Text
28 lines
586 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
"steps": [{
|
||
|
"args": "run -A setup.js",
|
||
|
"output": "[WILDCARD]"
|
||
|
}, {
|
||
|
"if": "unix",
|
||
|
"args": "compile --allow-read=data --include . --output main link.js",
|
||
|
"output": "[WILDCARD]"
|
||
|
}, {
|
||
|
"if": "unix",
|
||
|
"commandName": "./main",
|
||
|
"args": [],
|
||
|
"output": "1\n",
|
||
|
"exitCode": 0
|
||
|
}, {
|
||
|
"if": "windows",
|
||
|
"args": "compile --allow-read=data --include . --output main.exe link.js",
|
||
|
"output": "[WILDCARD]"
|
||
|
}, {
|
||
|
"if": "windows",
|
||
|
"commandName": "./main.exe",
|
||
|
"args": [],
|
||
|
"output": "1\n",
|
||
|
"exitCode": 0
|
||
|
}]
|
||
|
}
|