@storm-software/git-tools 2.124.25 → 2.124.27
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/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/git.cjs
CHANGED
|
@@ -3249,9 +3249,14 @@ function getReleaseGroupConfig(releaseConfig, workspaceConfig) {
|
|
|
3249
3249
|
Object.entries(releaseConfig.groups).map(([name, group]) => {
|
|
3250
3250
|
const config5 = chunkF65GQVIX_cjs.defu(
|
|
3251
3251
|
{
|
|
3252
|
-
...omit(DEFAULT_RELEASE_GROUP_CONFIG, ["changelog"]),
|
|
3252
|
+
...omit(DEFAULT_RELEASE_GROUP_CONFIG, ["changelog", "version"]),
|
|
3253
3253
|
...group
|
|
3254
3254
|
},
|
|
3255
|
+
{
|
|
3256
|
+
version: {
|
|
3257
|
+
...DEFAULT_RELEASE_GROUP_CONFIG.version
|
|
3258
|
+
}
|
|
3259
|
+
},
|
|
3255
3260
|
{
|
|
3256
3261
|
changelog: {
|
|
3257
3262
|
...DEFAULT_RELEASE_GROUP_CONFIG.changelog,
|