create-node-lib 2.9.5 → 2.9.7

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.9.7](https://github.com/lirantal/create-node-lib/compare/v2.9.6...v2.9.7) (2026-02-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Upgrade Node setup and Codecov action versions ([78af575](https://github.com/lirantal/create-node-lib/commit/78af57536edbbffbd3e644bbe79079e127a34789))
7
+
8
+ ## [2.9.6](https://github.com/lirantal/create-node-lib/compare/v2.9.5...v2.9.6) (2026-02-22)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Update Node.js setup action to version 6 ([12eabeb](https://github.com/lirantal/create-node-lib/commit/12eabeb3c0684e312bc917c744f50c61ad5c1014))
14
+ * Update Node.js version in release workflow ([c218f58](https://github.com/lirantal/create-node-lib/commit/c218f587593156895decee9016eb111da5aa417b))
15
+
1
16
  ## [2.9.5](https://github.com/lirantal/create-node-lib/compare/v2.9.4...v2.9.5) (2026-02-22)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.9.5",
3
+ "version": "2.9.7",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -12,7 +12,7 @@ jobs:
12
12
  runs-on: ${{matrix.platform}}
13
13
  steps:
14
14
  - uses: actions/checkout@v4
15
- - uses: actions/setup-node@v4
15
+ - uses: actions/setup-node@v6
16
16
  with:
17
17
  node-version: ${{matrix.node}}
18
18
  - name: install dependencies
@@ -24,7 +24,7 @@ jobs:
24
24
  - name: run tests
25
25
  run: npm run test
26
26
  - name: coverage
27
- uses: codecov/codecov-action@v4
27
+ uses: codecov/codecov-action@v5
28
28
  if: github.actor != 'dependabot[bot]'
29
29
  with:
30
30
  fail_ci_if_error: true
@@ -38,7 +38,7 @@ jobs:
38
38
  needs: test
39
39
  steps:
40
40
  - uses: actions/checkout@v4
41
- - uses: actions/setup-node@v4
41
+ - uses: actions/setup-node@v6
42
42
  with:
43
43
  node-version: "22.x"
44
44
  - name: install dependencies
@@ -14,10 +14,10 @@ jobs:
14
14
  - uses: actions/checkout@v4
15
15
 
16
16
  - name: Setup Node.js
17
- uses: actions/setup-node@v4
17
+ uses: actions/setup-node@v6
18
18
  with:
19
19
  node-version: '22'
20
20
 
21
21
  - name: Markdown Lint
22
22
  run: |
23
- npm run lint:markdown || npx -y markdownlint-cli@0.45.0 -c .github/.markdownlint.yml -i '.git' -i '__tests__' -i '.github' -i '.changeset' -i 'CODE_OF_CONDUCT.md' -i 'CHANGELOG.md' -i 'node_modules' -i 'dist' '**/**.md'
23
+ npm run lint:markdown || npx -y markdownlint-cli@0.45.0 -c .github/.markdownlint.yml -i '.git' -i '__tests__' -i '.github' -i '.changeset' -i 'CODE_OF_CONDUCT.md' -i 'CHANGELOG.md' -i 'node_modules' -i 'dist' '**/**.md'
@@ -19,9 +19,9 @@ jobs:
19
19
  runs-on: ubuntu-latest
20
20
  steps:
21
21
  - uses: actions/checkout@v4
22
- - uses: actions/setup-node@v4
22
+ - uses: actions/setup-node@v6
23
23
  with:
24
- node-version: 20.x
24
+ node-version: 24.x
25
25
  - name: install dependencies
26
26
  run: npm ci
27
27
  - name: build project
@@ -35,4 +35,4 @@ jobs:
35
35
  title: "chore: new release candidate"
36
36
  env:
37
37
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
38
+ NPM_CONFIG_PROVENANCE: true