找不到插件“ 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和依赖建议数字分隔符,删除节点模块,清理Yarn缓存;但没有任何效果。

我正在使用Yarn 1.22.4和Node 13.11.0,但我也尝试使用NPM 6.13.7。

回答:

以下步骤起作用:

  1. 将以下行添加到package.json

    “resolutions”: {

    “@babel/preset-env”: “7.5.5”

    },

  2. 运行以下命令:

    $ npx npm-force-resolutions

  3. 安装依赖项:

    $ npm install

    or

    $ yarn

  4. 建立您的专案:

    $ yarn build

看看这个 Github问题

以上是 找不到插件“ proposal-numeric-separator” 的全部内容, 来源链接: utcz.com/qa/403947.html

回到顶部