@storm-software/git-tools 2.124.26 → 2.124.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/git.cjs +6 -1
- package/bin/git.cjs.map +1 -1
- package/bin/git.js +6 -1
- package/bin/git.js.map +1 -1
- package/dist/{chunk-NWUK3RAD.js → chunk-NHHZKI52.js} +6 -1
- package/dist/{chunk-R5DOSVIY.cjs → chunk-Y4HX7IUQ.cjs} +6 -1
- package/dist/index.cjs +8 -8
- package/dist/index.js +1 -1
- package/dist/release/config.cjs +8 -8
- package/dist/release/config.js +1 -1
- package/package.json +5 -5
package/bin/git.js
CHANGED
|
@@ -3227,9 +3227,14 @@ function getReleaseGroupConfig(releaseConfig, workspaceConfig) {
|
|
|
3227
3227
|
Object.entries(releaseConfig.groups).map(([name, group]) => {
|
|
3228
3228
|
const config5 = defu(
|
|
3229
3229
|
{
|
|
3230
|
-
...omit(DEFAULT_RELEASE_GROUP_CONFIG, ["changelog"]),
|
|
3230
|
+
...omit(DEFAULT_RELEASE_GROUP_CONFIG, ["changelog", "version"]),
|
|
3231
3231
|
...group
|
|
3232
3232
|
},
|
|
3233
|
+
{
|
|
3234
|
+
version: {
|
|
3235
|
+
...DEFAULT_RELEASE_GROUP_CONFIG.version
|
|
3236
|
+
}
|
|
3237
|
+
},
|
|
3233
3238
|
{
|
|
3234
3239
|
changelog: {
|
|
3235
3240
|
...DEFAULT_RELEASE_GROUP_CONFIG.changelog,
|