forked from palantir/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nx.json
89 lines (89 loc) · 2.47 KB
/
nx.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"bundle",
"compile:cjs",
"compile:css-colors",
"compile:css",
"compile:esm",
"compile:esnext",
"compile",
"copy:fonts",
"copy:scss",
"dist:bundle",
"dist:css",
"dist:variables",
"generate-icon-src",
"lint:es",
"lint:scss",
"lint",
"test:karma",
"test:typeCheck"
]
}
}
},
"targetDefaults": {
"compile": {
"dependsOn": ["^compile"],
"outputs": ["{projectRoot}/lib"]
},
"compile:esm": {
"dependsOn": ["^compile:esm"],
"outputs": ["{projectRoot}/lib/esm"]
},
"compile:css": {
"dependsOn": ["^compile:css"],
"outputs": ["{projectRoot}/lib/css"]
},
"dev": {
"dependsOn": ["^compile"]
},
"compile:cjs": {
"dependsOn": ["^compile:cjs"],
"outputs": ["{projectRoot}/lib/cjs"]
},
"compile:esnext": {
"dependsOn": ["^compile:esnext"],
"outputs": ["{projectRoot}/lib/esnext"]
},
"dist:bundle": {
"dependsOn": ["^dist:bundle"],
"outputs": ["{projectRoot}/dist"]
},
"test": {
"dependsOn": ["^compile"]
},
"test:karma": {
"dependsOn": []
},
"test:karma:debug": {
"dependsOn": []
},
"bundle": {
"dependsOn": ["^bundle"],
"outputs": ["{projectRoot}/dist"]
},
"compile:css-colors": {
"outputs": ["{projectRoot}/lib"]
},
"dist:css": {
"outputs": ["{projectRoot}/lib/css"]
},
"dist:variables": {
"outputs": ["{projectRoot}/lib"]
},
"copy:scss": {
"outputs": ["{projectRoot}/lib/scss"]
},
"copy:fonts": {
"outputs": ["{projectRoot}/lib/css"]
},
"generate-icon-src": {
"outputs": ["{projectRoot}/src/generated"]
}
}
}