create-node-lib 2.19.2 → 2.19.3

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,10 @@
1
+ ## [2.19.3](https://github.com/lirantal/create-node-lib/compare/v2.19.2...v2.19.3) (2026-05-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * description for security clearer ([b43794a](https://github.com/lirantal/create-node-lib/commit/b43794a5ea311cbf07eaf22a91cc8b2b1b793283))
7
+
1
8
  ## [2.19.2](https://github.com/lirantal/create-node-lib/compare/v2.19.1...v2.19.2) (2026-05-15)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.19.2",
3
+ "version": "2.19.3",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
package/template/npmrc CHANGED
@@ -14,7 +14,7 @@ ignore-scripts=true
14
14
  # bypassing ignore-scripts entirely. This will be the default in npm 12.
15
15
  allow-git=none
16
16
 
17
- # SECURITY: refuse to install package versions younger than 30 days.
17
+ # SECURITY: block packages newer than 30 days (43200 minutes).
18
18
  # Gives the community time to spot and yank hijacked releases before
19
19
  # they reach your install. Value is in days.
20
20
  min-release-age=30