Skip to content

Commit 02a2b33

Browse files
authored
feat!: minimum supported Nodejs version is 14.15.0 (#1387) (#1388)
1 parent b7346b1 commit 02a2b33

File tree

4 files changed

+12
-24
lines changed

4 files changed

+12
-24
lines changed

.github/workflows/nodejs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
strategy:
6363
matrix:
6464
os: [ubuntu-latest, windows-latest, macos-latest]
65-
node-version: [12.x, 14.x, 16.x, 18.x, 19.x]
65+
node-version: [14.x, 16.x, 18.x, 19.x]
6666
webpack-version: [latest]
6767
include:
6868
- node-version: 16.x

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: "14.15.0",
1414
},
1515
},
1616
],

package-lock.json

+8-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"main": "dist/index.js",
1515
"types": "types/index.d.ts",
1616
"engines": {
17-
"node": ">= 12.13.0"
17+
"node": ">= 14.15.0"
1818
},
1919
"scripts": {
2020
"commitlint": "commitlint --from=master",
@@ -62,7 +62,7 @@
6262
"@types/connect": "^3.4.35",
6363
"@types/express": "^4.17.13",
6464
"@types/mime-types": "^2.1.1",
65-
"@types/node": "^12.20.43",
65+
"@types/node": "^14.14.31",
6666
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
6767
"babel-jest": "^28.1.0",
6868
"chokidar": "^3.5.1",

0 commit comments

Comments
 (0)