Skip to content

Commit d5b1e65

Browse files
authored
BREAKING: Bump minimum Node.js version to 14 (#92)
1 parent 9e68e24 commit d5b1e65

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build-lint-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: [12.x, 14.x, 16.x]
14+
node-version: [14.x, 16.x, 18.x, 20.x]
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Use Node.js ${{ matrix.node-version }}

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v12
1+
v18

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pump(storeAsStream(storeOne), transformStream, storeAsStream(storeTwo));
4343

4444
### Setup
4545

46-
- Install [Node.js](https://nodejs.org) version 12
46+
- Install [Node.js](https://nodejs.org) version 18
4747
- If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you.
4848
- Install [Yarn v1](https://yarnpkg.com/en/docs/install)
4949
- Run `yarn setup` to install dependencies and run any requried post-install scripts

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"typescript": "^4.1.3"
5353
},
5454
"engines": {
55-
"node": ">=12.0.0"
55+
"node": "^14.21 || ^16.20 || ^18.16 || >=20"
5656
},
5757
"publishConfig": {
5858
"access": "public",

0 commit comments

Comments
 (0)