2024-10-14 20:48:39 -04:00
|
|
|
{
|
|
|
|
"tempDir": true,
|
|
|
|
"steps": [{
|
2024-11-01 12:27:00 -04:00
|
|
|
"args": "install",
|
|
|
|
"output": "[WILDCARD]"
|
|
|
|
}, {
|
2024-10-14 20:48:39 -04:00
|
|
|
"if": "unix",
|
2024-11-01 12:27:00 -04:00
|
|
|
"args": "compile --output main main.js",
|
2024-10-14 20:48:39 -04:00
|
|
|
"output": "compile.out"
|
|
|
|
}, {
|
|
|
|
"if": "unix",
|
|
|
|
"commandName": "./main",
|
|
|
|
"args": [],
|
|
|
|
"output": "output.out",
|
2024-11-01 12:27:00 -04:00
|
|
|
"exitCode": 0
|
2024-10-14 20:48:39 -04:00
|
|
|
}, {
|
|
|
|
"if": "windows",
|
2024-11-01 12:27:00 -04:00
|
|
|
"args": "compile --output main.exe main.js",
|
2024-10-14 20:48:39 -04:00
|
|
|
"output": "compile.out"
|
|
|
|
}, {
|
|
|
|
"if": "windows",
|
|
|
|
"commandName": "./main.exe",
|
|
|
|
"args": [],
|
|
|
|
"output": "output.out",
|
2024-11-01 12:27:00 -04:00
|
|
|
"exitCode": 0
|
2024-10-14 20:48:39 -04:00
|
|
|
}]
|
|
|
|
}
|