create-node-lib 2.15.5 → 2.16.0
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 +7 -0
- package/package.json +1 -1
- package/template/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [2.16.0](https://github.com/lirantal/create-node-lib/compare/v2.15.5...v2.16.0) (2026-04-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Add release:create script to package.json ([7580372](https://github.com/lirantal/create-node-lib/commit/758037246eaad2cdc1c465556c67b95763093a62))
|
|
7
|
+
|
|
1
8
|
## [2.15.5](https://github.com/lirantal/create-node-lib/compare/v2.15.4...v2.15.5) (2026-04-20)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/template/package.json
CHANGED
|
@@ -46,7 +46,8 @@
|
|
|
46
46
|
"coverage:view": "open coverage/lcov-report/index.html",
|
|
47
47
|
"prepare": "husky",
|
|
48
48
|
"version": "changeset version",
|
|
49
|
-
"release": "changeset publish"
|
|
49
|
+
"release": "changeset publish",
|
|
50
|
+
"release:create": "changeset && git add .changeset && git commit -m \"chore: release\" && git push origin HEAD --no-verify"
|
|
50
51
|
},
|
|
51
52
|
"author": {
|
|
52
53
|
"name": "<%= author %>",
|