mirror of
https://github.com/denoland/deno.git
synced 2024-12-19 05:45:09 -05:00
25 lines
525 B
Text
25 lines
525 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
"steps": [{
|
||
|
"if": "unix",
|
||
|
"args": "compile --allow-read=. --include . --output main main.ts",
|
||
|
"output": "[WILDCARD]"
|
||
|
}, {
|
||
|
"if": "unix",
|
||
|
"commandName": "./main",
|
||
|
"args": [],
|
||
|
"output": "output.out",
|
||
|
"exitCode": 0
|
||
|
}, {
|
||
|
"if": "windows",
|
||
|
"args": "compile --allow-read=. --include . --output main main.ts",
|
||
|
"output": "[WILDCARD]"
|
||
|
}, {
|
||
|
"if": "windows",
|
||
|
"commandName": "./main.exe",
|
||
|
"args": [],
|
||
|
"output": "output.out",
|
||
|
"exitCode": 0
|
||
|
}]
|
||
|
}
|