Skip to content

Commit b1ad7ba

Browse files
refactor!: minimum supported Node.js version is 18.12.0
1 parent 95cf5c5 commit b1ad7ba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/nodejs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
strategy:
6262
matrix:
6363
os: [ubuntu-latest, windows-latest, macos-latest]
64-
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]
64+
node-version: [18.x, 20.x, 21.x]
6565
webpack-version: [latest]
6666

6767
runs-on: ${{ matrix.os }}

babel.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = (api) => {
1010
"@babel/preset-env",
1111
{
1212
targets: {
13-
node: "12.13.0",
13+
node: "18.12.0",
1414
},
1515
},
1616
],

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"main": "dist/cjs.js",
1515
"engines": {
16-
"node": ">= 12.13.0"
16+
"node": ">= 18.12.0"
1717
},
1818
"scripts": {
1919
"start": "npm run build -- -w",

0 commit comments

Comments
 (0)