create-node-lib 2.12.1 → 2.13.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,23 @@
1
+ ## [2.13.1](https://github.com/lirantal/create-node-lib/compare/v2.13.0...v2.13.1) (2026-03-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update devDependencies in package.json ([1f296d9](https://github.com/lirantal/create-node-lib/commit/1f296d9d0474e6f7898b8d51758abd9279ba2446))
7
+ * Add APM dependencies to gitignore ([ad7b3d9](https://github.com/lirantal/create-node-lib/commit/ad7b3d955820998ed095dd8478e9c024672ab8a9))
8
+
9
+ # [2.13.0](https://github.com/lirantal/create-node-lib/compare/v2.12.1...v2.13.0) (2026-03-25)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * add additional ignores to ESLint configuration ([f527fca](https://github.com/lirantal/create-node-lib/commit/f527fcabb420f191cd8be142d2d86ed82f8769a5))
15
+
16
+
17
+ ### Features
18
+
19
+ * update devcontainer configuration with new features ([839e57c](https://github.com/lirantal/create-node-lib/commit/839e57c0e2d84c111bbe55dd018b7f885a1e95da))
20
+
1
21
  ## [2.12.1](https://github.com/lirantal/create-node-lib/compare/v2.12.0...v2.12.1) (2026-03-25)
2
22
 
3
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.12.1",
3
+ "version": "2.13.1",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -1,6 +1,15 @@
1
1
  {
2
2
  "name": "Project Devcontainer",
3
- "image": "mcr.microsoft.com/devcontainers/typescript-node:24-bookworm",
3
+ "image": "mcr.microsoft.com/devcontainers/typescript-node:24-trixie",
4
+ "features": {
5
+ "ghcr.io/devcontainers/features/python:1": {
6
+ "version": "3.12",
7
+ "installPythonDevDependencies": true
8
+ },
9
+ "ghcr.io/devcontainer-community/devcontainer-features/astral.sh-uv:1": {
10
+ "shellautocompletion": true
11
+ }
12
+ },
4
13
  "mounts": [
5
14
  "source=${localEnv:HOME}/.gitconfig,target=/home/node/.gitconfig,type=bind,consistency=cached"
6
15
  ],
@@ -25,4 +34,4 @@
25
34
  "containerEnv": {
26
35
  "NODE_ENV": "development"
27
36
  }
28
- }
37
+ }
@@ -3,7 +3,15 @@ import neostandard, { resolveIgnoresFromGitignore, plugins } from 'neostandard'
3
3
 
4
4
  export default [
5
5
  ...neostandard({
6
- ignores: ['__tests__/**/*.ts', 'dist/**', ...resolveIgnoresFromGitignore()],
6
+ ignores: ['__tests__/**/*.ts', 'dist/**',
7
+ '.cursor/**',
8
+ '.devcontainer/**',
9
+ '.github/**',
10
+ '.vscode/**',
11
+ '.gemini/**',
12
+ '.claude/**',
13
+ '.agents/**',
14
+ ...resolveIgnoresFromGitignore()],
7
15
  ts: true, // Enable TypeScript support,
8
16
  filesTs: ['src/**/*.ts', '__tests__/**/*.ts']
9
17
  }),
@@ -36,4 +44,4 @@ export default [
36
44
  sourceType: 'module',
37
45
  },
38
46
  },
39
- ]
47
+ ]
@@ -1,4 +1,8 @@
1
1
  .dccache
2
+
3
+ # APM dependencies
4
+ apm_modules/
5
+
2
6
  # Logs
3
7
  logs
4
8
  *.log
@@ -86,4 +90,4 @@ typings/
86
90
  .vscode/
87
91
 
88
92
  # Snyk
89
- .dccache
93
+ .dccache
@@ -72,15 +72,15 @@
72
72
  "devDependencies": {
73
73
  "@changesets/changelog-github": "^0.5.0",
74
74
  "@changesets/cli": "^2.27.7",
75
- "@types/node": "^24.10.1",
76
- "c8": "^10.1.2",
75
+ "@types/node": "^25.5.0",
76
+ "c8": "^11.0.0",
77
77
  "eslint": "^9.6.0",
78
78
  "eslint-plugin-security": "^3.0.1",
79
79
  "husky": "^9.0.11",
80
80
  "lint-staged": "^16.2.7",
81
- "lockfile-lint": "^4.14.0",
82
- "neostandard": "^0.12.2",
83
- "tsdown": "^0.9.0",
81
+ "lockfile-lint": "^5.0.0",
82
+ "neostandard": "^0.13.0",
83
+ "tsdown": "^0.21.5",
84
84
  "tsx": "^4.19.4",
85
85
  "typescript": "^5.5.3",
86
86
  "validate-conventional-commit": "^1.0.4"