zx-bulk-release 1.7.4 → 1.7.5

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
+ ## [1.7.5](https://github.com/semrel-extra/zx-bulk-release/compare/v1.7.4...v1.7.5) (2022-06-25)
2
+
3
+ ### Fixes & improvements
4
+ * fix: rm redundant build try-catch ([ffaa845](https://github.com/semrel-extra/zx-bulk-release/commit/ffaa845926ca23a5e4f459e3c590758da59ce04b))
5
+
1
6
  ## [1.7.4](https://github.com/semrel-extra/zx-bulk-release/compare/v1.7.3...v1.7.4) (2022-06-25)
2
7
 
3
8
  ### Fixes & improvements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zx-bulk-release",
3
- "version": "1.7.4",
3
+ "version": "1.7.5",
4
4
  "description": "zx-based alternative for multi-semantic-release",
5
5
  "type": "module",
6
6
  "exports": "./src/main/js/index.js",
@@ -12,7 +12,6 @@ export const build = (pkg, packages) => ctx(async ($) => {
12
12
  if (pkg.manifest.scripts?.build && pkg.manifest?.release?.build) {
13
13
  if (pkg.changes?.length === 0 && pkg.manifest?.release?.fetch) await fetchPkg(pkg)
14
14
 
15
- try {
16
15
  if (!pkg.fetched) {
17
16
  $.cwd = pkg.absPath
18
17
 
@@ -25,9 +24,6 @@ export const build = (pkg, packages) => ctx(async ($) => {
25
24
  }
26
25
  }
27
26
  await $`yarn install`
28
- } catch (e) {
29
- console.log(`building '${pkg.name}' failed`, e)
30
- }
31
27
  }
32
28
 
33
29
  pkg.built = true