bulk-release 2.9.0 → 2.9.1

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.9.1](https://github.com/semrel-extra/zx-bulk-release/compare/v2.9.0...v2.9.1) (2023-06-09)
2
+
3
+ ### Fixes & improvements
4
+ * fix: set default build. cmd to `exit 0` ([23d8ee2](https://github.com/semrel-extra/zx-bulk-release/commit/23d8ee2f64f98ce0d8d4f57d97dbed1c4696a389))
5
+
1
6
  ## [2.9.0](https://github.com/semrel-extra/zx-bulk-release/compare/v2.8.0...v2.9.0) (2023-05-29)
2
7
 
3
8
  ### Features
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bulk-release",
3
3
  "alias": "bulk-release",
4
- "version": "2.9.0",
4
+ "version": "2.9.1",
5
5
  "description": "zx-based alternative for multi-semantic-release",
6
6
  "type": "module",
7
7
  "exports": {
@@ -24,14 +24,14 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@semrel-extra/topo": "^1.13.0",
27
- "cosmiconfig": "^8.1.3",
27
+ "cosmiconfig": "^8.2.0",
28
28
  "queuefy": "^1.2.1",
29
29
  "zx-extra": "^2.5.4"
30
30
  },
31
31
  "devDependencies": {
32
32
  "c8": "^7.14.0",
33
33
  "uvu": "^0.5.6",
34
- "verdaccio": "^5.24.1"
34
+ "verdaccio": "^5.25.0"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
File without changes
@@ -15,7 +15,7 @@ const CONFIG_FILES = [
15
15
  ]
16
16
 
17
17
  export const defaultConfig = {
18
- cmd: 'yarn && yarn build && yarn test',
18
+ cmd: 'exit 0',
19
19
  changelog: 'changelog',
20
20
  npmFetch: true,
21
21
  ghRelease: true,