mirror of
https://github.com/denoland/deno.git
synced 2025-02-15 01:57:09 -05:00
24 lines
547 B
JSON
24 lines
547 B
JSON
{
|
|
"tempDir": true,
|
|
"steps": [{
|
|
"if": "mac",
|
|
"args": "compile --output main --include file.txt --include FILE.txt main.js",
|
|
"output": "compile.out"
|
|
}, {
|
|
"if": "mac",
|
|
"commandName": "./main",
|
|
"args": [],
|
|
"output": "main.out",
|
|
"exitCode": 0
|
|
}, {
|
|
"if": "windows",
|
|
"args": "compile --output main.exe --include file.txt --include FILE.txt main.js",
|
|
"output": "compile.out"
|
|
}, {
|
|
"if": "windows",
|
|
"commandName": "./main.exe",
|
|
"args": [],
|
|
"output": "main.out",
|
|
"exitCode": 0
|
|
}]
|
|
}
|