@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 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
  `,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "2.111.7",
3
+ "version": "2.111.8",
4
4
  "type": "module",
5
5
  "description": "Tools for managing Git repositories within a Nx workspace.",
6
6
  "repository": {