zx-bulk-release 1.14.2 → 1.14.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,18 @@
1
+ ## [1.14.5](https://github.com/semrel-extra/zx-bulk-release/compare/v1.14.4...v1.14.5) (2022-06-27)
2
+
3
+ ### Fixes & improvements
4
+ * docs: mention vercel/turborepo ([a0dc3e9](https://github.com/semrel-extra/zx-bulk-release/commit/a0dc3e9f637f349e5d855855612824bc1d538178))
5
+
6
+ ## [1.14.4](https://github.com/semrel-extra/zx-bulk-release/compare/v1.14.3...v1.14.4) (2022-06-27)
7
+
8
+ ### Fixes & improvements
9
+ * refactor: simplify pkg build condition ([d6f236b](https://github.com/semrel-extra/zx-bulk-release/commit/d6f236b99e98b324cc180cbbdc2a41d92385498b))
10
+
11
+ ## [1.14.3](https://github.com/semrel-extra/zx-bulk-release/compare/v1.14.2...v1.14.3) (2022-06-27)
12
+
13
+ ### Fixes & improvements
14
+ * fix: disable gh-pages by default ([78ce3e8](https://github.com/semrel-extra/zx-bulk-release/commit/78ce3e84cf217a4f91e62cf27281d2f1e014168d))
15
+
1
16
  ## [1.14.2](https://github.com/semrel-extra/zx-bulk-release/compare/v1.14.1...v1.14.2) (2022-06-27)
2
17
 
3
18
  ### Fixes & improvements
package/README.md CHANGED
@@ -104,11 +104,13 @@ Each release projects its result into the `meta` branch.
104
104
  * [semrel-extra/zx-semrel](https://github.com/semrel-extra/zx-semrel)
105
105
  * [dhoulb/multi-semantic-release](https://github.com/dhoulb/multi-semantic-release)
106
106
  * [semantic-release/semantic-release](https://github.com/semantic-release/semantic-release)
107
- * [tophat/monodeploy](https://github.com/tophat/monodeploy)
108
107
  * [conventional-changelog/releaser-tools](https://github.com/conventional-changelog/releaser-tools)
109
108
  * [pmowrer/semantic-release-monorepo](https://github.com/pmowrer/semantic-release-monorepo)
110
109
  * [jscutlery/semver](https://github.com/jscutlery/semver)
110
+ * [tophat/monodeploy](https://github.com/tophat/monodeploy)
111
111
  * [intuit/auto](https://github.com/intuit/auto)
112
+ * [vercel/turborepo](https://github.com/vercel/turborepo)
113
+ * [nrwl/nx](https://github.com/nrwl/nx)
112
114
 
113
115
  ## License
114
116
  [MIT](./LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zx-bulk-release",
3
- "version": "1.14.2",
3
+ "version": "1.14.5",
4
4
  "description": "zx-based alternative for multi-semantic-release",
5
5
  "type": "module",
6
6
  "exports": "./src/main/js/index.js",
@@ -11,12 +11,11 @@ export const build = async (pkg, packages) => {
11
11
 
12
12
  const {config} = pkg
13
13
 
14
- if (config.cmd) {
15
- if (pkg.changes.length === 0 && config.npmFetch) await fetchPkg(pkg)
16
- if (!pkg.fetched) {
17
- console.log(`[${pkg.name}] run cmd '${config.cmd}'`)
18
- await $.o({cwd: pkg.absPath, quote: v => v})`${config.cmd}`
19
- }
14
+ if (pkg.changes.length === 0 && config.npmFetch) await fetchPkg(pkg)
15
+
16
+ if (!pkg.fetched && config.cmd) {
17
+ console.log(`[${pkg.name}] run cmd '${config.cmd}'`)
18
+ await $.o({cwd: pkg.absPath, quote: v => v})`${config.cmd}`
20
19
  }
21
20
 
22
21
  pkg.built = true
@@ -17,7 +17,7 @@ export const defaultConfig = {
17
17
  cmd: 'yarn && yarn build && yarn test',
18
18
  npmFetch: true,
19
19
  changelog: 'changelog',
20
- ghPages: 'gh-pages'
20
+ // ghPages: 'gh-pages'
21
21
  }
22
22
 
23
23
  export const getConfig = async (...cwds) =>