Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-10-10 05:21:44 +0300
committerRich Trott <rtrott@gmail.com>2021-10-12 04:37:42 +0300
commitb39db95737ce5f7e959e35af2b2dc9352d0744de (patch)
treefc09696f3c6b8f931d8e43a292f2224507072348
parenta6fd39f44f446b832cfcc45a518719196e3b2059 (diff)
tools: remove @bable/plugin-syntax-class-properties
ESLint 8.0.0 makes the plugin unnecessary. PR-URL: https://github.com/nodejs/node/pull/40394 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
-rw-r--r--.eslintrc.js2
-rwxr-xr-xtools/update-babel-eslint.sh2
2 files changed, 1 insertions, 3 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 5dca5bba9b2..1e35e787057 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 6b3f8d24ab9..f2cadbd2297 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