create-node-lib 2.15.4 → 2.16.0

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.16.0](https://github.com/lirantal/create-node-lib/compare/v2.15.5...v2.16.0) (2026-04-21)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add release:create script to package.json ([7580372](https://github.com/lirantal/create-node-lib/commit/758037246eaad2cdc1c465556c67b95763093a62))
7
+
8
+ ## [2.15.5](https://github.com/lirantal/create-node-lib/compare/v2.15.4...v2.15.5) (2026-04-20)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Update markdown lint command to ignore apm_modules ([5a970d0](https://github.com/lirantal/create-node-lib/commit/5a970d06887644e26f23a9f1b6eaf2f6b6f67db3))
14
+ * Update markdown linting script to include apm_modules ([e278132](https://github.com/lirantal/create-node-lib/commit/e278132510fdeb002b98c1e2e7de9efc60b903a1))
15
+
1
16
  ## [2.15.4](https://github.com/lirantal/create-node-lib/compare/v2.15.3...v2.15.4) (2026-04-13)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.15.4",
3
+ "version": "2.16.0",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -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.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'
29
+ pnpm run lint:markdown || pnpx -y markdownlint-cli@0.48.0 -c .github/.markdownlint.yml -i 'apm_modules/**' -i '.git' -i '__tests__' -i '.github' -i '.changeset' -i 'CODE_OF_CONDUCT.md' -i 'CHANGELOG.md' -i 'node_modules' -i 'dist' '**/**.md'
@@ -38,7 +38,7 @@
38
38
  "start": "tsx src/bin/cli.ts",
39
39
  "build": "tsc && tsdown",
40
40
  "lint": "eslint . && npm run lint:lockfile && npm run lint:markdown",
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",
41
+ "lint:markdown": "npx -y markdownlint-cli@0.48.0 -c .github/.markdownlint.yml -i 'apm_modules/**' -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",
@@ -46,7 +46,8 @@
46
46
  "coverage:view": "open coverage/lcov-report/index.html",
47
47
  "prepare": "husky",
48
48
  "version": "changeset version",
49
- "release": "changeset publish"
49
+ "release": "changeset publish",
50
+ "release:create": "changeset && git add .changeset && git commit -m \"chore: release\" && git push origin HEAD --no-verify"
50
51
  },
51
52
  "author": {
52
53
  "name": "<%= author %>",