File tree Expand file tree Collapse file tree 2 files changed +22
-65
lines changed Expand file tree Collapse file tree 2 files changed +22
-65
lines changed Original file line number Diff line number Diff line change 46
46
run : |
47
47
npx nx release version
48
48
npx nx run-many --target=build --all --parallel --maxParallel=4 --skipNxCache
49
- npx nx release changelog
50
49
npx nx release publish
51
50
- name : Tag last-release
52
51
shell : bash
Original file line number Diff line number Diff line change 71
71
"projects" : [" @scalprum/core" , " @scalprum/react-core" , " @scalprum/react-test-utils" ],
72
72
"projectsRelationship" : " independent" ,
73
73
"version" : {
74
- "generatorOptions" : {
75
- "packageRoot" : " dist/{projectRoot}" ,
76
- "currentVersionResolver" : " git-tag" ,
77
- "updateDependents" : " auto"
74
+ "git" : {
75
+ "commit" : true ,
76
+ "tag" : true ,
77
+ "push" : true ,
78
+ "commitMessage" : " chore: bump {projectName} to {version} [skip ci]"
78
79
},
79
- "conventionalCommits" : {
80
- "types" : {
81
- "feat" : {
82
- "semverBump" : " minor" ,
83
- "changelog" : {
84
- "title" : " Features"
85
- }
86
- },
87
- "fix" : {
88
- "semverBump" : " patch" ,
89
- "changelog" : {
90
- "title" : " Bug Fixes"
91
- }
92
- },
93
- "chore" : {
94
- "semverBump" : " patch" ,
95
- "changelog" : {
96
- "title" : " Chores"
97
- }
98
- },
99
- "refactor" : {
100
- "semverBump" : " patch" ,
101
- "changelog" : {
102
- "title" : " Refactoring"
103
- }
104
- },
105
- "docs" : {
106
- "semverBump" : " patch" ,
107
- "changelog" : {
108
- "hidden" : true
109
- }
110
- },
111
- "style" : {
112
- "semverBump" : " patch" ,
113
- "changelog" : {
114
- "hidden" : true
115
- }
116
- },
117
- "perf" : {
118
- "semverBump" : " patch" ,
119
- "changelog" : {
120
- "hidden" : true
121
- }
122
- },
123
- "test" : {
124
- "semverBump" : " patch" ,
125
- "changelog" : {
126
- "hidden" : true
127
- }
128
- }
129
- }
130
- }
80
+ "preVersionCommand" : " npx nx run-many -t build" ,
81
+ "conventionalCommits" : true ,
82
+ "preserveLocalDependencyProtocols" : false ,
83
+ "versionActionsOptions" : {
84
+ "skipLockFileUpdate" : false
85
+ },
86
+ "manifestRootsToUpdate" : [
87
+ " {projectRoot}" ,
88
+ " {projectRoot}/dist"
89
+ ]
131
90
},
132
91
"changelog" : {
92
+ "git" : {
93
+ "commit" : false ,
94
+ "tag" : true ,
95
+ "push" : true ,
96
+ "commitMessage" : " chore: {projectName} changelog {version} [skip ci]"
97
+ },
133
98
"projectChangelogs" : {
134
99
"createRelease" : " github" ,
135
100
"renderOptions" : {
139
104
}
140
105
}
141
106
},
142
- "releaseTagPattern" : " {projectName}-{version}" ,
143
- "git" : {
144
- "commitMessage" : " chore: bump {projectName} to {version} [skip ci]" ,
145
- "push" : true ,
146
- "commit" : true ,
147
- "tag" : true ,
148
- "stageChanges" : true
149
- }
107
+ "releaseTagPattern" : " {projectName}-{version}"
150
108
}
151
109
}
You can’t perform that action at this time.
0 commit comments