From b72d693a3a824fb02a0faebdc356ae0a2613f33c Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 9 Oct 2021 19:21:44 -0700 Subject: [PATCH] tools: remove @bable/plugin-syntax-class-properties MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ESLint 8.0.0 makes the plugin unnecessary. PR-URL: https://github.com/nodejs/node/pull/40394 Reviewed-By: Michaƫl Zasso Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca --- .eslintrc.js | 2 -- tools/update-babel-eslint.sh | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index d4c0bfa667da3f..3e1513b2b1f0a3 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -17,7 +17,6 @@ const hacks = [ 'eslint-plugin-node-core', 'eslint-plugin-markdown', '@babel/eslint-parser', - '@babel/plugin-syntax-class-properties', '@babel/plugin-syntax-import-assertions', ]; Module._findPath = (request, paths, isMain) => { @@ -40,7 +39,6 @@ module.exports = { parserOptions: { babelOptions: { plugins: [ - Module._findPath('@babel/plugin-syntax-class-properties'), Module._findPath('@babel/plugin-syntax-import-assertions'), ], }, diff --git a/tools/update-babel-eslint.sh b/tools/update-babel-eslint.sh index 6b3f8d24ab9157..f2cadbd2297339 100755 --- a/tools/update-babel-eslint.sh +++ b/tools/update-babel-eslint.sh @@ -18,7 +18,7 @@ ROOT="$PWD/../.." NPM="$ROOT/deps/npm/bin/npm-cli.js" "$NODE" "$NPM" init --yes -"$NODE" "$NPM" install --global-style --no-bin-links --production --no-package-lock @babel/core @babel/eslint-parser@latest @babel/plugin-syntax-class-properties@latest @babel/plugin-syntax-import-assertions@latest +"$NODE" "$NPM" install --global-style --no-bin-links --production --no-package-lock @babel/core @babel/eslint-parser@latest @babel/plugin-syntax-import-assertions@latest # Use dmn to remove some unneeded files. "$NODE" "$NPM" exec -- dmn@2.2.2 -f clean