diff --git a/.eslintrc.js b/.eslintrc.js index e84c7408d11572..d4c0bfa667da3f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -19,7 +19,6 @@ const hacks = [ '@babel/eslint-parser', '@babel/plugin-syntax-class-properties', '@babel/plugin-syntax-import-assertions', - '@babel/plugin-syntax-top-level-await', ]; Module._findPath = (request, paths, isMain) => { const r = ModuleFindPath(request, paths, isMain); @@ -43,7 +42,6 @@ module.exports = { plugins: [ Module._findPath('@babel/plugin-syntax-class-properties'), Module._findPath('@babel/plugin-syntax-import-assertions'), - Module._findPath('@babel/plugin-syntax-top-level-await'), ], }, requireConfigFile: false, diff --git a/tools/update-babel-eslint.sh b/tools/update-babel-eslint.sh index 4afec8cf4ed923..6b3f8d24ab9157 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 @babel/plugin-syntax-top-level-await@latest +"$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 # Use dmn to remove some unneeded files. "$NODE" "$NPM" exec -- dmn@2.2.2 -f clean