create-node-lib 2.12.0 → 2.13.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,22 @@
1
+ # [2.13.0](https://github.com/lirantal/create-node-lib/compare/v2.12.1...v2.13.0) (2026-03-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add additional ignores to ESLint configuration ([f527fca](https://github.com/lirantal/create-node-lib/commit/f527fcabb420f191cd8be142d2d86ed82f8769a5))
7
+
8
+
9
+ ### Features
10
+
11
+ * update devcontainer configuration with new features ([839e57c](https://github.com/lirantal/create-node-lib/commit/839e57c0e2d84c111bbe55dd018b7f885a1e95da))
12
+
13
+ ## [2.12.1](https://github.com/lirantal/create-node-lib/compare/v2.12.0...v2.12.1) (2026-03-25)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * delete template/.lychee.toml ([b75279b](https://github.com/lirantal/create-node-lib/commit/b75279bb59c26640d4af14af660e1e6aa548697b))
19
+
1
20
  # [2.12.0](https://github.com/lirantal/create-node-lib/compare/v2.11.2...v2.12.0) (2026-03-13)
2
21
 
3
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.12.0",
3
+ "version": "2.13.0",
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,8 +0,0 @@
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
- ]