bulk-release 2.11.3 → 2.11.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [2.11.4](https://github.com/semrel-extra/zx-bulk-release/compare/v2.11.3...v2.11.4) (2023-06-29)
2
+
3
+ ### Fixes & improvements
4
+ * fix: do not try to fetch private packages ([a6889bb](https://github.com/semrel-extra/zx-bulk-release/commit/a6889bb45e2bd05f82a05d20c4153baa5c6f1ab3))
5
+
1
6
  ## [2.11.3](https://github.com/semrel-extra/zx-bulk-release/compare/v2.11.2...v2.11.3) (2023-06-27)
2
7
 
3
8
  ### Fixes & improvements
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bulk-release",
3
3
  "alias": "bulk-release",
4
- "version": "2.11.3",
4
+ "version": "2.11.4",
5
5
  "description": "zx-based alternative for multi-semantic-release",
6
6
  "type": "module",
7
7
  "exports": {
@@ -129,7 +129,7 @@ const build = memoizeBy(async (pkg, run = runCmd, flags = {}, self = build) => w
129
129
 
130
130
  await Promise.all([
131
131
  traverseDeps({pkg, packages: pkg.context.packages, cb: async({pkg}) => self(pkg, run, flags, self)}),
132
- pkg.changes.length === 0 && pkg.config.npmFetch && flags.npmFetch !== false
132
+ pkg.manifest.private !== true && pkg.changes.length === 0 && pkg.config.npmFetch && flags.npmFetch !== false
133
133
  ? fetchPkg(pkg)
134
134
  : Promise.resolve()
135
135
  ])