语法错误:只有在启用'classProperties'插件时才能使用类属性



我使用 react-native init MyApp

初始化应用程序时会遇到以下语法错误
    SyntaxError: /Users/MyAccount/RNProjects/app/node_modules/react-native/packager/react-packager/src/node-haste/index.js: You can only use Class Properties when the 'classProperties' plugin is enabled. (389:2)
  387 |   }
  388 |
> 389 |   static Cache;
      |   ^
  390 |   static Module;
  391 |   static Polyfill;
  392 |   static getAssetDataFromName;
    at Parser.pp$5.raise (/Users/MyAccount/RNProjects/app/node_modules/babylon/lib/index.js:4380:13)

我不知道为什么突然发生这种情况。以前做得很好。我想我在修补时错误地删除了一些配置文件。

update

他们已经更新了包装,因此请删除您的节点模块并重新安装它们。rm -rf node_modulesnpm install更多信息

我正在安装"入门"。

$ rm -rf AwesomeProject/
$ react-native init AwesomeProject

它有效!

原始

提出了一个问题:https://github.com/facebook/reaect-native/issues/12542

npm uninstall babylon && npm install babylon@6.15.0或更新软件包文件以包含 "babylon": "6.15.0"

在我的情况下(在Windows7上),未安装Python。安装python2后,启动启动命令工作正常。

相关内容

  • 没有找到相关文章

最新更新