-
Notifications
You must be signed in to change notification settings - Fork 98
/
.sfdevrc.json
45 lines (45 loc) · 1.14 KB
/
.sfdevrc.json
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"wireit": {
"compile": {
"clean": "if-file-deleted",
"command": "tspc -p . --pretty --incremental",
"files": ["src/**/*.ts", "src/registry/**/*.json", "**/tsconfig.json", "messages/**"],
"output": ["lib/**", "*.tsbuildinfo"]
},
"test": {
"dependencies": ["test:only", "test:compile", "test:registry-validation", "test:snapshot"]
},
"test:only": {
"command": "nyc mocha \"test/**/*.test.ts\" --exclude \"test/registry/registryValidation.test.ts\" --exclude \"test/snapshot/**\"",
"env": {
"FORCE_COLOR": "2"
},
"files": [
"test/**/*.ts",
"src/**/*.ts",
"src/registry/*.json",
"**/tsconfig.json",
".mocha*",
"!*.nut.ts",
".nycrc"
],
"output": []
},
"test:snapshot": {
"command": "mocha \"test/snapshot/**/*.test.ts\" --parallel",
"env": {
"FORCE_COLOR": "2"
},
"files": [
"test/**/*.ts",
"src/**/*.ts",
"src/registry/*.json",
"**/tsconfig.json",
".mocha*",
"!*.nut.ts",
".nycrc"
],
"output": []
}
}
}