@storm-software/git-tools 2.111.7 → 2.111.8
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 +1 -1
- package/bin/git.js +1 -1
- package/package.json +1 -1
package/bin/git.cjs
CHANGED
|
@@ -82951,7 +82951,7 @@ async function updatePackageManifests(projectsVersionData, config) {
|
|
|
82951
82951
|
return;
|
|
82952
82952
|
}
|
|
82953
82953
|
const versionData = projectsVersionData[node];
|
|
82954
|
-
if (_optionalChain([projectNode, 'optionalAccess', _313 => _313.data, 'access', _314 => _314.root]) && versionData) {
|
|
82954
|
+
if (_optionalChain([projectNode, 'optionalAccess', _313 => _313.data, 'access', _314 => _314.root]) && versionData && versionData.newVersion !== null) {
|
|
82955
82955
|
_chunkIAGZMAZRcjs.writeTrace.call(void 0,
|
|
82956
82956
|
`Writing version ${versionData.newVersion} update to manifest file for ${node}
|
|
82957
82957
|
`,
|
package/bin/git.js
CHANGED
|
@@ -93201,7 +93201,7 @@ async function updatePackageManifests(projectsVersionData, config) {
|
|
|
93201
93201
|
return;
|
|
93202
93202
|
}
|
|
93203
93203
|
const versionData = projectsVersionData[node];
|
|
93204
|
-
if (projectNode?.data.root && versionData) {
|
|
93204
|
+
if (projectNode?.data.root && versionData && versionData.newVersion !== null) {
|
|
93205
93205
|
writeTrace(
|
|
93206
93206
|
`Writing version ${versionData.newVersion} update to manifest file for ${node}
|
|
93207
93207
|
`,
|