create-node-lib 2.9.10 → 2.9.12

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,17 @@
1
+ ## [2.9.12](https://github.com/lirantal/create-node-lib/compare/v2.9.11...v2.9.12) (2026-03-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add .lychee.toml configuration file ([3aebc10](https://github.com/lirantal/create-node-lib/commit/3aebc10f33c94a4a527ebd3248dc2455ea1c8bb8))
7
+
8
+ ## [2.9.11](https://github.com/lirantal/create-node-lib/compare/v2.9.10...v2.9.11) (2026-02-22)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Refactor bin entry in package.json to use object syntax ([1146c88](https://github.com/lirantal/create-node-lib/commit/1146c881a1aead596b5daf4be91b908161dc74ad))
14
+
1
15
  ## [2.9.10](https://github.com/lirantal/create-node-lib/compare/v2.9.9...v2.9.10) (2026-02-22)
2
16
 
3
17
 
@@ -68,6 +68,6 @@ members of the project's leadership.
68
68
  ## Attribution
69
69
 
70
70
  This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
71
+ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct/
72
72
 
73
73
  [homepage]: https://www.contributor-covenant.org
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.9.10",
3
+ "version": "2.9.12",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -0,0 +1,8 @@
1
+ [main]
2
+ # Exclude URLs that are known to return non-2xx responses to automated link checkers
3
+ exclude = [
4
+ # npmjs.com returns 403 Forbidden to automated link checkers
5
+ "https://www.npmjs.com/.*",
6
+ # codecov.io returns 502 Bad Gateway for this repository
7
+ "https://codecov.io/.*",
8
+ ]
@@ -4,7 +4,9 @@
4
4
  "description": "<%= description %>",
5
5
  "types": "dist/main.d.ts",
6
6
  "type": "module",
7
- "bin": "./dist/bin/cli.cjs",
7
+ "bin": {
8
+ "<%= projectName %>": "./dist/bin/cli.cjs"
9
+ },
8
10
  "exports": {
9
11
  ".": {
10
12
  "import": {
@@ -49,7 +51,7 @@
49
51
  "author": {
50
52
  "name": "<%= author %>",
51
53
  "email": "<%= email %>",
52
- "url": "https://github.com/<%= username %>"
54
+ "url": "git+https://github.com/<%= username %>"
53
55
  },
54
56
  "publishConfig": {
55
57
  "provenance": true,