summaryrefslogtreecommitdiff
path: root/tests/specs/compile/npmrc_byonm/__test__.jsonc
blob: 0cf5c4d7cf953313d0d232bdfb1dabd220e79d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  "tempDir": true,
  "steps": [{
    "args": "install",
    "output": "install.out"
  }, {
    "if": "unix",
    "args": "compile --output main main.js",
    "output": "[WILDCARD]"
  }, {
    "if": "unix",
    "commandName": "./main",
    "args": [],
    "output": "main.out"
  }, {
    "if": "windows",
    "args": "compile --output main.exe main.js",
    "output": "[WILDCARD]"
  }, {
    "if": "windows",
    "commandName": "./main.exe",
    "args": [],
    "output": "main.out"
  }]
}