Skip to content

Commit 27ec007

Browse files
committed
chore: update minimum Node.js version to 18
- Update engines requirement to Node.js >=18.0.0 and npm >=9.0.0 - Update CI matrix to test Node.js 18, 20, and 22 - Remove EOL Node.js 16 from testing matrix - Keep Dockerfile at Node.js 24 as updated by Dependabot Node.js 16 reached end-of-life in September 2023 and no longer receives security updates. Node.js 18 is the minimum active LTS.
1 parent 264914a commit 27ec007

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [16.x, 18.x, 20.x]
15+
node-version: [18.x, 20.x, 22.x]
1616

1717
steps:
1818
- uses: actions/checkout@v4

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
},
4848
"homepage": "https://github.com/lainra/claude-code-telemetry#readme",
4949
"engines": {
50-
"node": ">=16.0.0",
51-
"npm": ">=7.0.0"
50+
"node": ">=18.0.0",
51+
"npm": ">=9.0.0"
5252
},
5353
"files": [
5454
"src/",

0 commit comments

Comments
 (0)