forked from facebookarchive/nuclide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.projections.json
More file actions
57 lines (57 loc) · 1.16 KB
/
.projections.json
File metadata and controls
57 lines (57 loc) · 1.16 KB
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
{
"pkg/*/lib/*.js": {
"alternate": "pkg/{}/spec/{}-spec.js"
},
"pkg/*/spec/*-spec.js": {
"alternate": [
"pkg/{}/lib/{}.js",
"pkg/{}/{}.js"
],
"type": "test"
},
"pkg/*/*.js": {
"alternate": "pkg/{}/spec/{}-spec.js"
},
"pkg/*/**/Epics.js": {
"alternate": [
"pkg/{}/{}/Actions.js",
"pkg/{}/{}/Reducers.js"
],
"type": "epics"
},
"pkg/*/**/Reducers.js": {
"alternate": [
"pkg/{}/{}/Actions.js",
"pkg/{}/{}/Selectors.js",
"pkg/{}/{}/Epics.js"
],
"type": "reducers"
},
"pkg/*/**/Actions.js": {
"alternate": [
"pkg/{}/{}/Reducers.js",
"pkg/{}/{}/Epics.js"
],
"type": "actions"
},
"pkg/*/**/Selectors.js": {
"alternate": [
"pkg/{}/{}/Reducers.js"
],
"type": "actions"
},
"modules/*/*.js": {
"alternate": "modules/{}/spec/{}-spec.js"
},
"modules/*/spec/*-spec.js": {
"alternate": "modules/{}/{}.js",
"type": "test"
},
"modules/*/pkg/*/lib/*.js": {
"alternate": "modules/{}/pkg/{}/spec/{}-spec.js"
},
"modules/*/pkg/*/spec/*-spec.js": {
"alternate": "modules/{}/pkg/{}/lib/{}.js",
"type": "test"
}
}