From c4f0f875b78d38e82dddeb3fb98be8df4193a7e8 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Thu, 24 Nov 2022 07:39:23 +0530 Subject: [PATCH] build!: minimum supported Nodejs version is 14.15.0 (#4645) BREAKING CHANGE: minimum supported Nodejs version is 14.15.0 --- .github/workflows/nodejs.yml | 2 +- babel.config.js | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index c22de5c9c2..28926d503d 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -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: diff --git a/babel.config.js b/babel.config.js index 77e5958779..ef6a86da32 100644 --- a/babel.config.js +++ b/babel.config.js @@ -24,7 +24,7 @@ module.exports = (api) => { "@babel/preset-env", { targets: { - node: "12.13.0", + node: "14.15.0", }, }, ], diff --git a/package.json b/package.json index 0ea6a2d3c7..adacea9b2a 100644 --- a/package.json +++ b/package.json @@ -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",