mirror of
https://github.com/denoland/deno.git
synced 2024-12-19 05:45:09 -05:00
4cfa34052d
I ended up changing the file system implementation to determine its root directory as the last step of building it instead of being the first step which makes it much more reliable.
27 lines
588 B
Text
27 lines
588 B
Text
{
|
|
"tempDir": true,
|
|
"steps": [{
|
|
"args": "run -A setup.js",
|
|
"output": "[WILDCARD]"
|
|
}, {
|
|
"if": "unix",
|
|
"args": "compile --allow-read=data --include . --output main link.js",
|
|
"output": "compile.out"
|
|
}, {
|
|
"if": "unix",
|
|
"commandName": "./main",
|
|
"args": [],
|
|
"output": "1\n",
|
|
"exitCode": 0
|
|
}, {
|
|
"if": "windows",
|
|
"args": "compile --allow-read=data --include . --output main.exe link.js",
|
|
"output": "compile.out"
|
|
}, {
|
|
"if": "windows",
|
|
"commandName": "./main.exe",
|
|
"args": [],
|
|
"output": "1\n",
|
|
"exitCode": 0
|
|
}]
|
|
}
|