tmp
Wednesday, February 10, 2016
React Native starting error
react-native 0.19.0 アプリケーションロード時に以下のようなエラーが出るようになった ``` ReferenceError: Can't find variable: __DEV__ or Uncaught Error: Uncaught TypeError: Cannot set property 'Text' of undefined ``` 以下やったこと ###node_modulesを再インストール ```bash $ rm -rf node_modules $ npm i ``` ###projectが古いかもしれないのでupgrade ```bash $ react-native upgrade ``` ###packagerのcache削除 ```bash $ watchman watch-del-all $ ./node_modules/react-native/packager/packager.sh --reset-cache ``` 以上でも改善されず projectの `.babelrc` を削除し、`index.ios.js` を `
` だけ返すようにすると問題無いことに気づく その時の `.babelrc` ``` { "plugins": ["transform-decorators-legacy"], "presets": ["es2015", "stage-0", "react"] } ``` どれかが原因だと思い1つずつ消していくと `es2015` を消すと問題なくなった ``` { "plugins": ["transform-decorators-legacy"], "presets": ["stage-0", "react"] } ``` 謎すぎて怖い
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment