2024-11-25 17:08:06 -05:00
|
|
|
{
|
|
|
|
"tempDir": true,
|
|
|
|
"steps": [{
|
|
|
|
"args": "run -A setup.js",
|
|
|
|
"output": "[WILDCARD]"
|
|
|
|
}, {
|
|
|
|
"if": "unix",
|
|
|
|
"args": "compile --allow-read=data --include . --output main link.js",
|
2024-12-12 13:07:35 -05:00
|
|
|
"output": "compile.out"
|
2024-11-25 17:08:06 -05:00
|
|
|
}, {
|
|
|
|
"if": "unix",
|
|
|
|
"commandName": "./main",
|
|
|
|
"args": [],
|
|
|
|
"output": "1\n",
|
|
|
|
"exitCode": 0
|
|
|
|
}, {
|
|
|
|
"if": "windows",
|
|
|
|
"args": "compile --allow-read=data --include . --output main.exe link.js",
|
2024-12-12 13:07:35 -05:00
|
|
|
"output": "compile.out"
|
2024-11-25 17:08:06 -05:00
|
|
|
}, {
|
|
|
|
"if": "windows",
|
|
|
|
"commandName": "./main.exe",
|
|
|
|
"args": [],
|
|
|
|
"output": "1\n",
|
|
|
|
"exitCode": 0
|
|
|
|
}]
|
|
|
|
}
|