blob: 87abf82a720459b222e5c5d7b95e79e37edf4b92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"tempDir": true,
"steps": [{
"if": "unix",
"args": "compile --output my-app main/main.ts",
"output": "[WILDCARD]"
}, {
"if": "unix",
"commandName": "./my-app",
"args": [],
"output": "main.out"
}, {
"if": "windows",
"args": "compile --output my-app.exe main/main.ts",
"output": "[WILDCARD]"
}, {
"if": "windows",
"commandName": "./my-app.exe",
"args": [],
"output": "main.out"
}]
}
|