web-dev-qa-db-ja.com

プラグイン「proposal-numeric-separator」が見つかりませんでした

直し方 Could not find plugin "proposal-numeric-separator"、Reactアプリケーションをビルドしようとすると、このエラーが発生します。アプリケーションをまだ取り出していません。

./src/index.js
Error: [BABEL] /home/pc/Downloads/project/src/index.js: Could not find plugin "proposal-numeric-separator". Ensure there is an entry in ./available-plugins.js for it. (While processing: "/home/pc/Downloads/project/node_modules/babel-preset-react-app/index.js$0")
    at Array.map (<anonymous>)
    at Generator.next (<anonymous>)
    at Generator.next (<anonymous>)


error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

Babelと依存関係のプロポーザル数値セパレータをダウンロードして、Node Modulesを削除し、Yarnキャッシュをクリーンアップしましたが、何も動作しませんでした。

私は糸1.22.4とNode 13.11.0を使用していますが、NPM 6.13.7でも試しました。

87
Walter

私の場合、破損したnode_modulesフォルダ。私の糸の取り付けは、電力サージによって真ん中で止まっただけです。

実行すると:

rm -rf node_modules
yarn

私の問題は解決しました。

0
Christian Saiki

私のために働いた。 npm install @ babel/compat-data @〜7.8.0

0
Ankur Garg