create-node-lib 2.9.11 → 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 +7 -0
- package/CODE_OF_CONDUCT.md +1 -1
- package/package.json +1 -1
- package/template/.lychee.toml +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
8
|
## [2.9.11](https://github.com/lirantal/create-node-lib/compare/v2.9.10...v2.9.11) (2026-02-22)
|
|
2
9
|
|
|
3
10
|
|
package/CODE_OF_CONDUCT.md
CHANGED
|
@@ -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
|
|
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
|
@@ -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
|
+
]
|