-
Notifications
You must be signed in to change notification settings - Fork 9
/
nx.json
125 lines (125 loc) · 2.97 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"affected": {
"defaultBase": "origin/master"
},
"workspaceLayout": {
"appsDir": "packages",
"libsDir": "packages"
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"cache": true,
"inputs": ["production", "^production"]
},
"test": {
"cache": true,
"inputs": ["default", "^production"]
},
"lint": {
"cache": true,
"inputs": ["default", "^production", "{projectRoot}/.eslintrc.json", "{workspaceRoot}/.eslintrc.json"],
"defaultConfiguration": "check",
"configurations": {
"check": {
"fix": false
},
"fix": {
"fix": true
},
"ci": {
"quiet": true
}
}
},
"clean": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"parallel": false,
"commands": ["nx run {projectName}:clean:dist", "nx run {projectName}:clean:node"]
},
"configurations": {
"dist": {
"commands": ["shx rm -rf ./dist"]
},
"node": {
"commands": ["shx rm -rf ./node_modules"]
}
}
},
"@angular-devkit/build-angular:browser": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"@nx/angular:package": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"@nx/vite:test": {
"cache": true,
"inputs": ["default", "^production"]
},
"@nx/vite:build": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
}
},
"generators": {
"@nx/angular:application": {
"e2eTestRunner": "none",
"linter": "eslint",
"style": "scss",
"unitTestRunner": "none"
},
"@nx/angular:library": {
"linter": "eslint",
"unitTestRunner": "none"
},
"@nx/angular:component": {
"style": "scss"
}
},
"cacheDirectory": ".nx-cache",
"release": {
"projects": [
"workspace",
"elements",
"elements-angular",
"elements-react",
"elements-vue",
"storybook",
"elements-angular-example",
"elements-react-example",
"elements-vue-example",
"ui-patterns",
"ui-patterns-playground"
],
"changelog": {
"git": {
"commitMessage": "chore: publish {version}"
},
"projectChangelogs": false,
"workspaceChangelog": {
"createRelease": "github"
}
},
"version": {
"conventionalCommits": true
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": ["{workspaceRoot}/tsconfig.json", "{workspaceRoot}/tsconfig.base.json"],
"production": [
"default",
"!{projectRoot}/**/*.e2e.ts",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json"
]
}
}