-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.json
55 lines (55 loc) · 1.3 KB
/
project.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
{
"name": "root",
"$schema": "node_modules/nx/schemas/project-schema.json",
"targets": {
"build": {
"executor": "nx:run-commands",
"options": {
"command": "nx affected --base=origin/master -t build --parallel=3 --exclude='*,!tag:runtime:*'"
}
},
"lint": {
"executor": "nx:run-commands",
"options": {
"command": "nx affected --base=origin/master -t lint --exclude root"
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"command": "nx run-many -t tests --parallel=3 --exclude root"
}
},
"serve": {
"executor": "nx:run-commands",
"options": {
"command": "nx run-many -t serve --parallel=3 --exclude='*,!tag:runtime:*'"
}
},
"dep-graph": {
"executor": "nx:run-commands",
"options": {
"command": "nx dep-graph"
}
},
"release": {
"executor": "nx:run-commands",
"options": {
"command": "release-it"
}
},
"upgrade": {
"executor": "nx:run-commands",
"options": {
"command": "yarn dlx yarn-upgrade-all"
}
},
"create": {
"executor": "nx:run-commands",
"options": {
"command": "nx g cg-global-generator:{args.type} {args.name}"
}
}
},
"tags": ["root"]
}