Skip to content

Commit 7eb6379

Browse files
committed
build!: minimum supported Nodejs version is 14.15.0 (#1505)
1 parent 93bcbb1 commit 7eb6379

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.cspell.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@
3636
"Brotli",
3737
"Contex",
3838
"vspace",
39-
"commitlint"
39+
"commitlint",
40+
"codecov",
41+
"wagoid",
42+
"autocrlf",
43+
"CODECOV"
4044
],
4145

4246
"ignorePaths": [

.github/workflows/nodejs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
strategy:
6161
matrix:
6262
os: [ubuntu-latest, windows-latest, macos-latest]
63-
node-version: [12.x, 14.x, 16.x, 18.x, 19.x]
63+
node-version: [14.x, 16.x, 18.x, 19.x]
6464
webpack-version: [latest]
6565

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

package-lock.json

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

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": ">= 14.15.0"
1717
},
1818
"scripts": {
1919
"start": "npm run build -- -w",

0 commit comments

Comments
 (0)