Skip to content

Commit 28255d0

Browse files
authored
Merge pull request #15 from code-rabi/benr/feat-bump-node-version
chore: bump node version
2 parents a9a040b + 56dcc2e commit 28255d0

File tree

5 files changed

+31
-24
lines changed

5 files changed

+31
-24
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Node.js
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: "20"
19+
node-version: "25.3.0"
2020
cache: "npm"
2121
registry-url: "https://registry.npmjs.org"
2222

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Setup Node.js
3535
uses: actions/setup-node@v4
3636
with:
37-
node-version: "20.x"
37+
node-version: "25.3.0"
3838
cache: "npm"
3939
registry-url: "https://registry.npmjs.org"
4040

package-lock.json

Lines changed: 24 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "toolception",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"private": false,
55
"type": "module",
66
"main": "dist/index.js",
@@ -30,7 +30,7 @@
3030
},
3131
"devDependencies": {
3232
"@types/connect": "^3.4.38",
33-
"@types/node": "^20.11.5",
33+
"@types/node": "^25.0.0",
3434
"@vitest/coverage-v8": "^3.2.4",
3535
"tsx": "^4.19.0",
3636
"typescript": "^5.9.2",
@@ -39,7 +39,7 @@
3939
"vitest": "^3.2.4"
4040
},
4141
"engines": {
42-
"node": ">=20.0.0"
42+
"node": ">=25.3.0"
4343
},
4444
"license": "Apache-2.0",
4545
"description": "Dynamic MCP server toolkit for runtime toolset management with Fastify transport and meta-tools",

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"declarationMap": true,
88
"emitDeclarationOnly": false,
99
"module": "ESNext",
10-
"target": "ES2020",
10+
"target": "ES2023",
1111
"moduleResolution": "Bundler",
12-
"lib": ["ES2020", "DOM"],
12+
"lib": ["ES2023", "DOM"],
1313
"skipLibCheck": true,
1414
"strict": true,
1515
"noEmitOnError": true,

0 commit comments

Comments
 (0)