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 +5 -0
- package/package.json +1 -1
- package/src/main/js/npm.js +1 -1
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
package/src/main/js/npm.js
CHANGED
|
@@ -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
|
-
|
|
50
|
+
fs.writeFileSync(manifestPath, manifestRaw, {encoding: 'utf8'})
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
export const getNpmrc = async ({npmConfig, npmToken, npmRegistry}) => {
|