create-node-lib 2.9.7 → 2.9.8

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.9.8](https://github.com/lirantal/create-node-lib/compare/v2.9.7...v2.9.8) (2026-02-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update release workflow ([ed70308](https://github.com/lirantal/create-node-lib/commit/ed7030886a81b32274f4ce5bf23d2005e0c2b3bf))
7
+
1
8
  ## [2.9.7](https://github.com/lirantal/create-node-lib/compare/v2.9.6...v2.9.7) (2026-02-22)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.9.7",
3
+ "version": "2.9.8",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -18,10 +18,12 @@ jobs:
18
18
  timeout-minutes: 20
19
19
  runs-on: ubuntu-latest
20
20
  steps:
21
- - uses: actions/checkout@v4
21
+ - uses: actions/checkout@v6
22
22
  - uses: actions/setup-node@v6
23
23
  with:
24
24
  node-version: 24.x
25
+ - name: Update npm
26
+ run: npm update -g npm
25
27
  - name: install dependencies
26
28
  run: npm ci
27
29
  - name: build project
@@ -36,3 +38,4 @@ jobs:
36
38
  env:
37
39
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
40
  NPM_CONFIG_PROVENANCE: true
41
+ NPM_TOKEN: ''