create-node-lib 2.19.6 → 2.19.8
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.
|
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
|
|
55
55
|
## Enforcement
|
|
56
56
|
|
|
57
57
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
-
reported by contacting the project team at
|
|
58
|
+
reported by contacting the project team at liran.tal@gmail.com. All
|
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
61
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.19.8](https://github.com/lirantal/create-node-lib/compare/v2.19.7...v2.19.8) (2026-05-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Update devcontainer.json with new feature versions ([c2ef584](https://github.com/lirantal/create-node-lib/commit/c2ef5842e49f9f21e96f1e73b8a3cee244a40769))
|
|
7
|
+
|
|
8
|
+
## [2.19.7](https://github.com/lirantal/create-node-lib/compare/v2.19.6...v2.19.7) (2026-05-23)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* formatting in tsconfig.json ([6499050](https://github.com/lirantal/create-node-lib/commit/64990505a53b1d1b7ed79b9bb01ee925f81d80c5))
|
|
14
|
+
|
|
1
15
|
## [2.19.6](https://github.com/lirantal/create-node-lib/compare/v2.19.5...v2.19.6) (2026-05-18)
|
|
2
16
|
|
|
3
17
|
## [2.19.5](https://github.com/lirantal/create-node-lib/compare/v2.19.4...v2.19.5) (2026-05-17)
|
package/package.json
CHANGED
|
@@ -2,13 +2,15 @@
|
|
|
2
2
|
"name": "Project Devcontainer",
|
|
3
3
|
"image": "mcr.microsoft.com/devcontainers/typescript-node:24-trixie",
|
|
4
4
|
"features": {
|
|
5
|
-
"ghcr.io/devcontainers/features/python:
|
|
5
|
+
"ghcr.io/devcontainers/features/python@sha256:fbcad6955caeecc5ad3f7886baf652e25cba5225a6c4c2287c536de2e5607511": {
|
|
6
6
|
"version": "3.12",
|
|
7
7
|
"installPythonDevDependencies": true
|
|
8
8
|
},
|
|
9
|
-
"ghcr.io/devcontainer-community/devcontainer-features/astral.sh-uv:
|
|
9
|
+
"ghcr.io/devcontainer-community/devcontainer-features/astral.sh-uv@sha256:36f95b90080248a05aba7b1b3cecf8018bb6d7222f6274f03f050b502abd4fe7": {
|
|
10
10
|
"shellautocompletion": true
|
|
11
|
-
}
|
|
11
|
+
},
|
|
12
|
+
"ghcr.io/devcontainers-extra/features/ripgrep@sha256:0dfc0ac16f0d6aa754d006a138fd4cb4a62c245d308306edf8ad1b7a80b8fdf2": {},
|
|
13
|
+
"ghcr.io/devcontainers/features/github-cli@sha256:d22f50b70ed75339b4eed1ba9ecde3a1791f90e88d37936517e3bace0bbad671": {}
|
|
12
14
|
},
|
|
13
15
|
// Ask the editor to forward these container ports (no Docker appPort).
|
|
14
16
|
"forwardPorts": [8787, 3005, 3001, 3000],
|
package/template/tsconfig.json
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"declaration": true,
|
|
17
17
|
"declarationMap": true,
|
|
18
18
|
"sourceMap": true,
|
|
19
|
-
|
|
19
|
+
"allowImportingTsExtensions": true,
|
|
20
20
|
"allowSyntheticDefaultImports": true,
|
|
21
|
-
|
|
21
|
+
"forceConsistentCasingInFileNames": true,
|
|
22
22
|
"resolveJsonModule": true,
|
|
23
23
|
"isolatedModules": true,
|
|
24
24
|
"removeComments": true,
|