create-node-lib 2.11.0 → 2.11.1
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,11 @@
|
|
|
1
|
+
## [2.11.1](https://github.com/lirantal/create-node-lib/compare/v2.11.0...v2.11.1) (2026-03-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Update markdownlint-cli version in package.json ([192bd88](https://github.com/lirantal/create-node-lib/commit/192bd88e1fad3db083e129a1cfc80ec0d7638ece))
|
|
7
|
+
* Update markdownlint-cli version to 0.48.0 ([f601761](https://github.com/lirantal/create-node-lib/commit/f6017616ed11c89184f201dd9dcb49d9de912954))
|
|
8
|
+
|
|
1
9
|
# [2.11.0](https://github.com/lirantal/create-node-lib/compare/v2.10.1...v2.11.0) (2026-03-09)
|
|
2
10
|
|
|
3
11
|
|
package/package.json
CHANGED
|
@@ -26,4 +26,4 @@ jobs:
|
|
|
26
26
|
|
|
27
27
|
- name: Markdown Lint
|
|
28
28
|
run: |
|
|
29
|
-
pnpm run lint:markdown || pnpx -y markdownlint-cli@0.
|
|
29
|
+
pnpm run lint:markdown || pnpx -y markdownlint-cli@0.48.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'
|
package/template/package.json
CHANGED
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"start": "node --import tsx src/bin/cli.ts",
|
|
39
39
|
"build": "tsc && tsup",
|
|
40
40
|
"lint": "eslint . && npm run lint:lockfile && npm run lint:markdown",
|
|
41
|
-
"lint:markdown": "npx -y markdownlint-cli@0.
|
|
41
|
+
"lint:markdown": "npx -y markdownlint-cli@0.48.0 -c .github/.markdownlint.yml -i '.git' -i '__tests__' -i '.github' -i '.changeset' -i 'CODE_OF_CONDUCT.md' -i 'CHANGELOG.md' -i 'docs/**' -i 'node_modules' -i 'dist' '**/**.md' --fix",
|
|
42
42
|
"lint:fix": "eslint . --fix",
|
|
43
43
|
"lint:lockfile": "lockfile-lint --path pnpm-lock.yaml --validate-https --allowed-hosts npm",
|
|
44
44
|
"test": "c8 node --import tsx --test __tests__/**/*.test.ts",
|