Skip to content

Commit c12ac23

Browse files
committed
fix(version): still trying ti fix version update issue
1 parent 2c47812 commit c12ac23

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

bun.lockb

-480 Bytes
Binary file not shown.

package-lock.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"start": "node src/hub.js",
88
"commit": "cz",
99
"packGithubBuild": "rm -rf ./microstream-hub.tar.gz && tar -cvzf microstream-hub.tar.gz src CHANGELOG.md README.md LICENSE CONTRIBUTING.md package.json",
10-
"release": "npm run packGithubBuild && semantic-release"
10+
"release": "npm run packGithubBuild && semantic-release",
11+
"postrelease": "bun install && npm install"
1112
},
1213
"repository": {
1314
"type": "git",
@@ -23,6 +24,7 @@
2324
"@semantic-release/changelog": "^6.0.3",
2425
"@semantic-release/git": "^10.0.1",
2526
"@semantic-release/github": "^11.0.1",
27+
"@semantic-release/npm": "^12.0.1",
2628
"commitizen": "^4.3.1",
2729
"cz-conventional-changelog": "^3.3.0",
2830
"semantic-release": "^24.2.3"

release.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ module.exports = {
2323
changelogFile: "CHANGELOG.md",
2424
},
2525
],
26+
[
27+
"@semantic-release/npm",
28+
{
29+
npmPublish: false, // Set to false if you don't want to publish to npm
30+
},
31+
],
2632
[
2733
"@semantic-release/github",
2834
{

0 commit comments

Comments
 (0)