@storm-software/git-tools 2.112.1 → 2.112.2
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/bin/git.cjs +4 -1
- package/bin/git.js +4 -1
- package/package.json +1 -1
package/bin/git.cjs
CHANGED
|
@@ -81641,7 +81641,10 @@ var StormChangelogRenderer = (_class16 = class extends _changelogrenderer2.defau
|
|
|
81641
81641
|
renderDependencyBumps() {
|
|
81642
81642
|
const markdownLines = ["", "### Updated Dependencies", ""];
|
|
81643
81643
|
_optionalChain([this, 'access', _194 => _194.dependencyBumps, 'optionalAccess', _195 => _195.forEach, 'call', _196 => _196(({ dependencyName, newVersion }) => {
|
|
81644
|
-
|
|
81644
|
+
const markdownLine = `- Updated ${dependencyName} to ${newVersion}`;
|
|
81645
|
+
if (!markdownLines.includes(markdownLine)) {
|
|
81646
|
+
markdownLines.push(markdownLine);
|
|
81647
|
+
}
|
|
81645
81648
|
})]);
|
|
81646
81649
|
return markdownLines;
|
|
81647
81650
|
}
|
package/bin/git.js
CHANGED
|
@@ -91891,7 +91891,10 @@ var StormChangelogRenderer = class extends DefaultChangelogRenderer {
|
|
|
91891
91891
|
renderDependencyBumps() {
|
|
91892
91892
|
const markdownLines = ["", "### Updated Dependencies", ""];
|
|
91893
91893
|
this.dependencyBumps?.forEach(({ dependencyName, newVersion }) => {
|
|
91894
|
-
|
|
91894
|
+
const markdownLine = `- Updated ${dependencyName} to ${newVersion}`;
|
|
91895
|
+
if (!markdownLines.includes(markdownLine)) {
|
|
91896
|
+
markdownLines.push(markdownLine);
|
|
91897
|
+
}
|
|
91895
91898
|
});
|
|
91896
91899
|
return markdownLines;
|
|
91897
91900
|
}
|