Skip to content

Commit 861ee66

Browse files
deps: modules update
1 parent 7c35740 commit 861ee66

File tree

4 files changed

+237
-234
lines changed

4 files changed

+237
-234
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Basic template for robust development of TypeScript apps with:
44

5-
- [Node.js](https://nodejs.org/docs/latest-v22.x/api/index.html) - Latest LTS version of Node. Currently it's **LTS/Jod** (v22).
5+
- [Node.js](https://nodejs.org/docs/latest-v24.x/api/index.html) - Latest LTS version of Node. Currently it's **LTS/Krypton** (v24).
66
- [pnpm](https://pnpm.io/) - Fast, disk space efficient package manager.
77
- [TypeScript](https://www.typescriptlang.org/) - JavaScript with syntax for types.
88
- [ESM Modules](https://nodejs.org/api/esm.html) - modern JavaScript modules.

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
33
"assist": { "actions": { "source": { "organizeImports": "on" } } },
44
"linter": {
55
"enabled": true,

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"homepage": "https://github.com/PoProstuWitold/node-ts-template",
88
"type": "module",
99
"engines": {
10-
"node": ">=22.x",
10+
"node": ">=24.x",
1111
"pnpm": ">=10.x"
1212
},
1313
"scripts": {
@@ -25,22 +25,22 @@
2525
"test:watch": "NODE_ENV='development' node --watch --import tsx --test __tests__/*.test.ts"
2626
},
2727
"keywords": [
28-
"TypeScript",
28+
"typescript",
2929
"boilerplate",
3030
"node",
3131
"ts"
3232
],
3333
"license": "MIT",
3434
"devDependencies": {
35-
"@biomejs/biome": "^2.2.5",
36-
"@types/node": "^24.7.0",
37-
"rimraf": "^6.0.1",
35+
"@biomejs/biome": "^2.3.2",
36+
"@types/node": "^24.9.2",
37+
"rimraf": "^6.1.0",
3838
"tsx": "^4.20.6",
3939
"typescript": "^5.9.3"
4040
},
4141
"volta": {
42-
"node": "22.20.0",
43-
"pnpm": "10.18.1"
42+
"node": "24.11.0",
43+
"pnpm": "10.20.0"
4444
},
4545
"pnpm": {
4646
"onlyBuiltDependencies": [

0 commit comments

Comments
 (0)