在我的.babelrc中添加“stage-2”预设后,我的项目中的几个不同的库中收到以下错误。 (这是我的假设atm)
例如来自React Native中的DatePicker类:
node_modules/react-native/Libraries/Components/DatePickerAndroid/DatePickerAndroid.android.js: You gave us a visitor for the node type "ForAwaitStatement" but it's not a valid type
我使用的是React Native 0.31和
"devDependencies": { "babel-preset-react-native-stage-0": "^1.0.1","babel-preset-stage-2": "^6.17.0" },
我也遇到了这个。通过将package.json中的条目更改为最新的(在撰写本文时)通过更新我的babel-core版本来解决
原文链接:https://www.f2er.com/react/301859.html// package.json ... "babel-core": "6.17.0",...
然后运行
rm -r node_modules/babel* && npm i