Tried React 360 for the first time.
git clone https://github.com/rahulranjan14/projectReact360.git
npm install
npm install —verbose
npm install
npm start
- Invalid regular expression: /(node_modules[\\\]react[\\\]dist[\\\].*|website\\node_modules\\.*|heapCapture\\bundle\.js|.*\\__tests__\\.*)$/: Unterminated character
- class
then, navigate to /node_modules/metro-bundler/src/blacklist.js
replace this :
- var sharedBlacklist = [
- /node_modules[/\\]react[/\\]dist[/\\].*/,
- /website\/node_modules\/.*/,
- /heapCapture\/bundle\.js/,
- /.*\/__tests__\/.*/
- ];
with this :
- var sharedBlacklist = [
- /node_modules[\/\\]react[\/\\]dist[\/\\].*/,
- /website\/node_modules\/.*/,
- /heapCapture\/bundle\.js/,
- /.*\/__tests__\/.*/
- ];
npm start