React-native-project@0.1.0 start > react-native-scripts start 18:32:00: Starting packager... ***ERROR STARTING PACKAGER*** Starting React Native packager... Scanning folders for symlinks in D:\code01\node_modules (47ms) Invalid regular expression: /(node_modules[\\\]react[\\\]dist[\\\].*|website\\node_modules\\.*|heapCapture\\bundle\.js|.*\\__tests__\\.*)$/: Unterminated character class
时间: 2023-07-08 13:45:33 浏览: 145
React-Native-Accordion:React Native 中的手风琴
这个错误是由于您的正则表达式中存在未结束的字符类所导致的。您需要检查您的代码中的正则表达式并确保它们被正确地结束。在这个特定的错误信息中,它提到了一个正则表达式的路径:`/(node_modules[\\\]react[\\\]dist[\\\].*|website\\node_modules\\.*|heapCapture\\bundle\.js|.*\\__tests__\\.*)$/`,您可以尝试找到这个正则表达式并检查它是否正确结束。另外,您也可以尝试通过使用一个在线正则表达式测试器来测试您的正则表达式是否存在问题。
阅读全文