-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.projections.json
66 lines (53 loc) · 1.21 KB
/
.projections.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"pages/*.js": {
"type": "page",
"alternate": "pages/{}.js"
},
"styles/app.scss": {
"type": "stylesheet"
},
"styles/*.scss": {
"type": "stylesheet"
},
"src/app/store.js": {
"type": "store"
},
"src/app/*.js": {
"type": "app"
},
"src/components/*.js": {
"type": "component",
"dispatch": "yarn test --silent=true --watchAll=false src/components/{}.test.js",
"alternate": "src/components/{}.test.js"
},
"src/helpers/*.js": {
"type": "helper",
"alternate": "src/helpers/{}.test.js"
},
"src/features/*.js": {
"type": "feature",
"alternate": "src/features/{}.test.js"
},
"src/abis/pools/*.js": {
"type": "pool"
},
"src/abis/tokens/*.js": {
"type": "token"
},
"src/abis/vaults/*.js": {
"type": "vault"
},
"src/components/*.test.js": {
"type": "tcomponent",
"dispatch": "yarn test --silent=true --watchAll=false src/components/{}.test.js",
"alternate": "src/components/{}.js"
},
"src/helpers/*.test.js": {
"type": "thelpers",
"dispatch": "yarn test --silent=true --watchAll=false src/components/{}.test.js",
"alternate": "src/components/{}.js"
},
"src/index.js": {
"type": "index"
}
}