首页 > Web开发 > 详细

React Native报错SyntaxError: Invalid regular expression: /(.*\\__fixtures__\\.*|node_modules[\\\]react[\\\]dist[\\\].*|website\\node_modules\\.*|heapCapture\\bundle\.js|.*\\__tests__\\.*)$/:

时间:2020-05-26 22:39:34      阅读:661      评论:0      收藏:0      [点我收藏+]

今天在公司拉下项目link的时候,react native报了这样的错误

 

1.Error log:

 

E:\project\my\scanner-qrcode-master\node_modules\metro-config\src\defaults\blacklist.js:38

  return new RegExp(

         ^

 

SyntaxError: Invalid regular expression: /(.*\\__fixtures__\\.*|node_modules[\\\]react[\\\]dist[\\\].*|website\\node_modules\\.*|heapCapture\\bundle\.js|.*\\__tests__\\.*)$/: Unterminated character class

    at new RegExp (<anonymous>)

    at blacklist (E:\project\my\react-native-scanner-qrcode-master\node_modules\metro-config\src\defaults\blacklist.js:38:10)

    at getBlacklistRE (E:\project\my\react-native-scanner-qrcode-master\node_modules\react-native\local-cli\util\Config.js:58:10)

    at Object.<anonymous> (E:\project\my\react-native-scanner-qrcode-master\node_modules\react-native\local-cli\util\Config.js:73:20)

    at Module._compile (internal/modules/cjs/loader.js:956:30)

    at Module._compile (E:\project\my\react-native-scanner-qrcode-master\node_modules\pirates\lib\index.js:99:24)

    at Module._extensions..js (internal/modules/cjs/loader.js:973:10)

    at Object.newLoader [as .js] (E:\project\my\react-native-scanner-qrcode-master\node_modules\pirates\lib\index.js:104:7)

    at Module.load (internal/modules/cjs/loader.js:812:32)

    at Function.Module._load (internal/modules/cjs/loader.js:724:14)

 

解决方法:

 

进入node_modules\metro-config\src\defaults 编辑 blacklist.js

 

/node_modules[/\\]react[/\\]dist[/\\].*/ 修改为 /node_modules[\/\\]react[\/\\]dist[\/\\].*/

React Native报错SyntaxError: Invalid regular expression: /(.*\\__fixtures__\\.*|node_modules[\\\]react[\\\]dist[\\\].*|website\\node_modules\\.*|heapCapture\\bundle\.js|.*\\__tests__\\.*)$/:

原文:https://www.cnblogs.com/bugDevelopment/p/12968407.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!