react-native: error: SyntaxError: .../node_modules/react-native/Libraries/Components/Touchable/Touchable.js: Unexpected token, expected "]" (25:45)

New Version

0.70.0

Old Version

0.63.3

Build Target(s)

iOS 16.0

Output of react-native info

System: OS: macOS 13.0 CPU: (8) x64 Apple M1 Memory: 27.19 MB / 16.00 GB Shell: 5.8.1 - /bin/zsh Binaries: Node: 16.14.0 - ~/.nvm/versions/node/v16.14.0/bin/node Yarn: 1.22.19 - ~/.yarn/bin/yarn npm: 8.3.1 - ~/.nvm/versions/node/v16.14.0/bin/npm Watchman: 2021.06.07.00 - /opt/homebrew/bin/watchman Managers: CocoaPods: 1.11.3 - /Users/alex/.rbenv/shims/pod SDKs: iOS SDK: Platforms: DriverKit 21.4, iOS 16.0, macOS 12.3, tvOS 16.0, watchOS 9.0 Android SDK: API Levels: 28, 29, 30, 31 Build Tools: 28.0.3, 29.0.2, 30.0.2, 30.0.3, 31.0.0, 31.0.0 System Images: android-25 | Google APIs ARM 64 v8a, android-29 | Google Play ARM 64 v8a, android-30 | Google APIs Intel x86 Atom, android-30 | Google Play ARM 64 v8a, android-31 | Google APIs ARM 64 v8a Android NDK: Not Found IDEs: Android Studio: 4.2 AI-202.7660.26.42.7486908 Xcode: 14.0/14A309 - /usr/bin/xcodebuild Languages: Java: 11.0.10 - /opt/homebrew/opt/openjdk@11/bin/javac npmPackages: @react-native-community/cli: Not Found react: 18.1.0 => 18.1.0 react-native: 0.70.1 => 0.70.1 react-native-macos: Not Found npmGlobalPackages: react-native: Not Found

Issue and Reproduction Steps

  1. Build the app using Xcode 14
  2. yarn start --reset-cache
  3. Error displays

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Reactions: 10
  • Comments: 27 (6 by maintainers)

Most upvoted comments

Just upgraded from 0.63.4 to 0.70.1 and got this error This helped me rm -fr node_modules watchman watch-del-all

Changing package.json might not get what you want and shouldn’t be necessary. The simplest thing to do, if you can, is to delete yarn.lock and node_modules and run yarn again.

It’s because babel core and runtime are out of date when you upgrade.

Even though the package.json specifies an earlier version when you start a new project from scratch it installs a newer version that works. I am sure all testing was done from scratch.

Force an update to:

@babel/core”: 7.20.5 “@babel/runtime”: 7.20.6

The versions I supplied came right from the lock files of a new install and resolve the issue.

@bwindsor Dang, neither

"overrides": {
    "@react-native-community/cli": "^10.1.0"
}

or

"overrides": {
  "react-native: {
      "@react-native-community/cli": "^10.1.0"
   }
}

have seemed to work. Not seeing any indication of the yarn.lock file getting updated for the new dependency version 😞

Has anyone else found a possible solution beyond a patch-package?

Hello, solve this issue writing this in app console : rm -rf node_modules rm yarn.lock yarn