mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 13:22:55 -05:00
4365f8d999
Closes #27024
24 lines
525 B
Text
24 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
|
|
}]
|
|
}
|