Skip to content

Commit

Permalink
build!: minimum supported Nodejs version is 14.15.0 (#4645)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: minimum supported Nodejs version is 14.15.0
  • Loading branch information
snitin315 committed Nov 26, 2022
1 parent 36ec366 commit 5a71fb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [12.x, 14.x, 16.x, 18.x, 19.x]
node-version: [14.x, 16.x, 18.x, 19.x]
shard: ["1/4", "2/4", "3/4", "4/4"]
webpack-version: [latest]
include:
Expand Down
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = (api) => {
"@babel/preset-env",
{
targets: {
node: "12.13.0",
node: "14.15.0",
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"types"
],
"engines": {
"node": ">= 12.13.0"
"node": ">= 14.15.0"
},
"scripts": {
"fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
Expand Down

0 comments on commit 5a71fb8

Please sign in to comment.