create-node-lib 2.15.5 → 2.16.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,18 @@
1
+ ## [2.16.1](https://github.com/lirantal/create-node-lib/compare/v2.16.0...v2.16.1) (2026-04-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove deprecated Snyk vulnerabilities badge from README ([#43](https://github.com/lirantal/create-node-lib/issues/43)) ([2a7b2f0](https://github.com/lirantal/create-node-lib/commit/2a7b2f0f026e89c49070978948752abfd06a0cc7))
7
+ * remove Snyk badge from README ([b776931](https://github.com/lirantal/create-node-lib/commit/b77693189aee5628b85af8f2c92b3945b30cae8f))
8
+
9
+ # [2.16.0](https://github.com/lirantal/create-node-lib/compare/v2.15.5...v2.16.0) (2026-04-21)
10
+
11
+
12
+ ### Features
13
+
14
+ * Add release:create script to package.json ([7580372](https://github.com/lirantal/create-node-lib/commit/758037246eaad2cdc1c465556c67b95763093a62))
15
+
1
16
  ## [2.15.5](https://github.com/lirantal/create-node-lib/compare/v2.15.4...v2.15.5) (2026-04-20)
2
17
 
3
18
 
package/README.md CHANGED
@@ -10,7 +10,6 @@
10
10
  <a href="https://www.npmjs.org/package/create-node-lib"><img src="https://badgen.net/npm/v/create-node-lib"alt="npm version"/></a>
11
11
  <a href="https://www.npmjs.org/package/create-node-lib"><img src="https://badgen.net/npm/license/create-node-lib"alt="license"/></a>
12
12
  <a href="https://www.npmjs.org/package/create-node-lib"><img src="https://badgen.net/npm/dt/create-node-lib"alt="downloads"/></a>
13
- <a href="https://snyk.io/test/github/lirantal/create-node-lib"><img src="https://snyk.io/test/github/lirantal/create-node-lib/badge.svg" alt="Known Vulnerabilities"/></a>
14
13
  <a href="./SECURITY.md"><img src="https://img.shields.io/badge/Security-Responsible%20Disclosure-yellow.svg" alt="Responsible Disclosure Policy" /></a>
15
14
  <a href="https://github.com/saojs/awesome-sao"><img src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" alt="Awesome"/></a>
16
15
  <a href="https://snyk.io/advisor/npm-package/create-node-lib"><img src="https://snyk.io/advisor/npm-package/create-node-lib/badge.svg" alt="create-node-lib"></a>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.15.5",
3
+ "version": "2.16.1",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -16,7 +16,6 @@
16
16
  <a href="https://www.npmjs.com/package/<%= projectName %>"><img src="https://badgen.net/npm/dt/<%= projectName %>" alt="downloads"/></a>
17
17
  <a href="https://github.com/<%= username %>/<%= projectName %>/actions?workflow=CI"><img src="https://github.com/<%= username %>/<%= projectName %>/workflows/CI/badge.svg" alt="build"/></a>
18
18
  <a href="https://app.codecov.io/gh/<%= username %>/<%= projectName %>"><img src="https://badgen.net/codecov/c/github/<%= username %>/<%= projectName %>" alt="codecov"/></a>
19
- <a href="https://snyk.io/test/github/<%= username %>/<%= projectName %>"><img src="https://snyk.io/test/github/<%= username %>/<%= projectName %>/badge.svg" alt="Known Vulnerabilities"/></a>
20
19
  <a href="./SECURITY.md"><img src="https://img.shields.io/badge/Security-Responsible%20Disclosure-yellow.svg" alt="Responsible Disclosure Policy" /></a>
21
20
  </p>
22
21
 
@@ -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 %>",