forked from strapi/strapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnx.json
116 lines (116 loc) · 2.77 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
{
"namedInputs": {
"default": ["{projectRoot}/**/*"],
"production": [
"!{projectRoot}/**/*.test.ts",
"!{projectRoot}/**/*.test.js",
"!{projectRoot}/**/*.test.api.js",
"!{projectRoot}/**/__mocks__/**",
"!{projectRoot}/**/__tests__/**",
"!{projectRoot}/**/*.md",
"!{projectRoot}/jest.config.js",
"!{projectRoot}/jest.config.front.js",
"!{projectRoot}/tsconfig.eslint.json",
"!{projectRoot}/.eslintignore",
"!{projectRoot}/.eslintrc.js"
]
},
"cli": {
"packageManager": "yarn"
},
"targetDefaults": {
"build": {
"inputs": ["default", "^production"],
"outputs": ["{projectRoot}/dist"],
"dependsOn": ["^build"],
"cache": true
},
"build:code": {
"inputs": ["default", "^production"],
"outputs": ["{projectRoot}/dist"],
"cache": true
},
"build:types": {
"inputs": ["default", "^production"],
"outputs": ["{projectRoot}/dist"],
"dependsOn": ["^build:types"],
"cache": true
},
"test:unit": {
"inputs": ["default", "{workspaceRoot}/jest-preset.unit.js"],
"cache": true
},
"test:front": {
"inputs": ["default", "{workspaceRoot}/jest-preset.front.js"],
"cache": true
},
"lint": {
"inputs": [
"{projectRoot}/**/*.js",
"{projectRoot}/**/*.ts",
"{projectRoot}/.eslintrc.js",
"{projectRoot}/.eslintignore",
"{projectRoot}/tsconfig.eslint.json",
"{workspaceRoot}/packages/utils/eslint-config-custom/**/*"
],
"cache": true
}
},
"useInferencePlugins": false,
"parallel": 8,
"pluginsConfig": {
"@nx/js": {
"analyzeSourceFiles": false
}
},
"release": {
"projects": ["packages/**/*", ".github/actions/check-pr-status", "scripts/front"],
"changelog": {
"workspaceChangelog": {
"file": false,
"createRelease": "github"
}
},
"version": {
"conventionalCommits": false,
"git": {
"commitMessage": "release: {version}"
}
},
"conventionalCommits": {
"types": {
"docs": {
"changelog": {
"title": "📚 Documentation Changes"
}
},
"enhancement": {
"changelog": {
"title": "💅 Enhancement"
}
},
"feat": {
"changelog": {
"title": "🚀 New feature"
}
},
"fix": {
"changelog": {
"title": "🔥 Bug fix"
}
},
"security": {
"semverBump": "patch",
"changelog": {
"title": "🚨 Security"
}
},
"chore": {
"changelog": {
"title": "⚙️ Chore"
}
}
}
}
}
}