Skip to content

Commit 4fe38e7

Browse files
committed
build(deps): raise minimum node.js version
The minimum required Node.js version has been updated from `18.x` to `20.x`. This change is reflected in `package.json`, `README.md`, and the CI workflow. The CI matrix now tests against Node.js `20.x`, `22.x`, and `24.x`, removing support for older versions. BREAKING CHANGE: Node.js 18.x is no longer supported. Users must upgrade to Node.js 20.x or higher.
1 parent ce2a1ad commit 4fe38e7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/npm-build.yml

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

1010
strategy:
1111
matrix:
12-
node-version: ['18.x', '20.x', '23.x']
12+
node-version: ['20.x', '22.x', '24.x']
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Install pnpm

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The **Puter CLI** is a command-line interface tool designed to interact with the
3636
## Installation
3737

3838
### Prerequisites
39-
- Node.js (v18 or higher)
39+
- Node.js (v20 or higher)
4040
- npm (v7 or higher)
4141

4242
Run the following command to install puter-cli globally in your system:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"coverage": "TZ=UTC vitest run --coverage"
1717
},
1818
"engines": {
19-
"node": ">=18.0.0"
19+
"node": ">=20.0.0"
2020
},
2121
"keywords": [
2222
"puter",

0 commit comments

Comments
 (0)