create-node-lib 2.9.12 → 2.9.13

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.13](https://github.com/lirantal/create-node-lib/compare/v2.9.12...v2.9.13) (2026-03-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * links checker updates ([e50e0eb](https://github.com/lirantal/create-node-lib/commit/e50e0eb3c0509ee9508ceb7fb8ccb5041929f9c5))
7
+
1
8
  ## [2.9.12](https://github.com/lirantal/create-node-lib/compare/v2.9.11...v2.9.12) (2026-03-03)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.9.12",
3
+ "version": "2.9.13",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -0,0 +1,6 @@
1
+ # Exclude URLs that are known to return non-2xx responses to automated link checkers
2
+ exclude = [
3
+ # npmjs.com returns 403 Forbidden to automated link checkers
4
+ "https://www.npmjs.com/.*",
5
+ "https://www.npmjs.org/.*",
6
+ ]
@@ -1,6 +1,7 @@
1
- name: Links Checker (On Schedule)
1
+ name: Links Checker
2
2
 
3
3
  on:
4
+ pull_request:
4
5
  repository_dispatch:
5
6
  workflow_dispatch:
6
7
  schedule:
@@ -17,7 +18,9 @@ jobs:
17
18
 
18
19
  - name: Link Checker
19
20
  id: lychee
20
- uses: lycheeverse/lychee-action@2b973e86fc7b1f6b36a93795fe2c9c6ae1118621 # v1.10.0
21
+ uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0
22
+ with:
23
+ args: --verbose --config .github/.lychee.toml .
21
24
 
22
25
  - name: Create Issue From File
23
26
  if: env.lychee_exit_code != 0