After upgrading to latest @react-navigation/stack 5.2.10 from previous 5.x. The App (react native 0.61.5) launch has an error:
error: bundling failed: SyntaxError: C:\D\code\js\emps_fe615\node_modules\@react-navigation\bottom-tabs\src\index.tsx: Unexpected token (15:12)
13 | * Types
14 | */
> 15 | export type {
| ^
16 | BottomTabNavigationOptions,
17 | BottomTabNavigationProp,
18 | BottomTabBarProps,
BUNDLE [android, dev] ./index.js ▓▓▓▓▓▓▓▓▓▓▓▓░░░░ 75.5% (802/923)::ffff:127.0.0.1 - - [11/Apr/2020:02:14:43 +0000] "GET /index.bundle?platform=android&dev=true&minify=false HTTP/1.1" 500 - "-" "okhttp/3.12.1"
BUNDLE [android, dev] ./index.js ▓▓▓▓▓▓▓▓▓▓▓▓░░░░ 75.5% (802/923), failed.
Here is the part of package.json
:
"@react-navigation/bottom-tabs": "^5.2.6",
"@react-navigation/native": "^5.1.5",
"@react-navigation/stack": "^5.2.10"
"react-native-gesture-handler": "^1.6.1",
"react-native-screens": "^2.4.0",
Is there anyone seeing the error after upgrade? Any idea to fix it?
If nothing is working, and if you're using yarn, you can try it:
rm -rf node_modules yarn.lock
yarn cache clean
yarn
If NPM:
rm -rf node_modules package-lock.lock
npm cache clean --force
npm install
[Bonus] Start React Native cleaning the cache:
Vanilla RN: npx react-native start --reset-cache
Expo: expo start -c