-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnx.json
More file actions
84 lines (84 loc) · 2.29 KB
/
Copy pathnx.json
File metadata and controls
84 lines (84 loc) · 2.29 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
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
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"release": {
"projects": ["mcp2cli"],
"releaseTagPattern": "v{version}",
"git": {
"commit": true,
"commitMessage": "chore(release): v{version}",
"tag": true,
"stageChanges": true
},
"version": {
"conventionalCommits": true,
"versionActions": "./tools/release/version-actions.js",
"generatorOptions": {
"skipLockFileUpdate": true
}
},
"releaseTagPatternCheckAllBranchesWhen": ["main", "next", "develop"],
"changelog": {
"automaticFromRef": true,
"workspaceChangelog": {
"file": "CHANGELOG.md",
"createRelease": "github",
"renderOptions": {
"authors": true,
"commitReferences": false,
"versionTitleDate": true
}
},
"projectChangelogs": false
},
"conventionalCommits": {
"types": {
"feat": {
"semverBump": "minor",
"changelog": { "title": "Features", "hidden": false }
},
"fix": {
"semverBump": "patch",
"changelog": { "title": "Fixes", "hidden": false }
},
"perf": {
"semverBump": "patch",
"changelog": { "title": "Performance", "hidden": false }
},
"refactor": {
"semverBump": "patch",
"changelog": { "title": "Refactors", "hidden": false }
},
"docs": {
"semverBump": "none",
"changelog": { "title": "Docs", "hidden": false }
},
"build": {
"semverBump": "none",
"changelog": { "title": "Build", "hidden": true }
},
"ci": {
"semverBump": "none",
"changelog": { "title": "CI", "hidden": true }
},
"chore": {
"semverBump": "none",
"changelog": { "title": "Chore", "hidden": true }
},
"style": {
"semverBump": "none",
"changelog": { "title": "Style", "hidden": true }
},
"test": {
"semverBump": "none",
"changelog": { "title": "Tests", "hidden": true }
},
"revert": {
"semverBump": "patch",
"changelog": { "title": "Reverts", "hidden": false }
}
}
}
},
"targetDefaults": {},
"parallel": 1
}