zx-bulk-release 2.4.0 → 2.4.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.4.1](https://github.com/semrel-extra/zx-bulk-release/compare/v2.4.0...v2.4.1) (2023-04-09)
2
+
3
+ ### Fixes & improvements
4
+ * fix: revert pkg.json state after publishing asap ([7e28b3e](https://github.com/semrel-extra/zx-bulk-release/commit/7e28b3eb3f0685bbe2133a6a0a1103ff19edca18))
5
+
1
6
  ## [2.4.0](https://github.com/semrel-extra/zx-bulk-release/compare/v2.3.3...v2.4.0) (2023-04-09)
2
7
 
3
8
  ### Features
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zx-bulk-release",
3
3
  "alias": "bulk-release",
4
- "version": "2.4.0",
4
+ "version": "2.4.1",
5
5
  "description": "zx-based alternative for multi-semantic-release",
6
6
  "type": "module",
7
7
  "exports": {
@@ -47,7 +47,7 @@ export const npmPublish = async (pkg) => {
47
47
  const npmrc = await getNpmrc({npmConfig, npmToken, npmRegistry})
48
48
 
49
49
  await $.o({cwd})`npm publish --no-git-tag-version --registry=${npmRegistry} --userconfig ${npmrc} --tag ${npmTag} --no-workspaces`
50
- await fs.writeFile(manifestPath, manifestRaw, {encoding: 'utf8'})
50
+ fs.writeFileSync(manifestPath, manifestRaw, {encoding: 'utf8'})
51
51
  }
52
52
 
53
53
  export const getNpmrc = async ({npmConfig, npmToken, npmRegistry}) => {