일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- expo
- 코틀린
- Python
- 안드로이드
- 파이썬
- 11054
- Android
- 앱
- 매일11시
- 순열
- 최소공배수
- Kotlin
- itertools
- 홈화면
- 나머지
- 11기
- Combination
- LCS
- 1260
- 뒤로가기
- 6603
- 괄호
- 1182
- permutation
- lcm
- 코테
- 11053
- 11057
- 9095
- 백준
Archives
- Today
- Total
황소개발자
expo npm start 에러 #1 본문
반응형
안녕하세요 황소개발자, hjp845입니다.
오늘은 npm start 했을 때 발생할 수 있는 에러에 대해 알아볼껀데요.
error Invalid regular expression: /(.*\\__fixtures__\\.*|node_modules[\\\]react[\\\]dist[\\\].*|website\\node_modules\\.*|heapCapture\\bundle\.js|.*\\__tests__\\.*)$/: Unterminated character class. Run CLI with --verbose flag for more details.
Metro Bundler process exited with code 1
Set EXPO_DEBUG=true in your env to view the stack trace.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ start: `expo start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
위와 같은 로그가 찍히는 에러인데요.
코드를 조금만 바꿔주면 간단하게 해결됩니다.
\node_modules\metro-config\src\defaults\blacklist.js
파일에서
var sharedBlacklist = [
/node_modules[/\\]react[/\\]dist[/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];
를
var sharedBlacklist = [
/node_modules[\/\\]react[\/\\]dist[\/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];
다음과 같이 고쳐주시면 해결!
이상입니다.
반응형
'각종 에러 잡기' 카테고리의 다른 글
[안드로이드 스튜디오][코틀린] failed to initialize editor : xml layout 정상적으로 안보일 때[android][kotlin] 잘되다가 갑자기 안될때 (0) | 2020.02.21 |
---|---|
khopenapi 타인 계좌는 사용할 수 없습니다. [에러 해결] [키움 증권openapi] (0) | 2020.02.21 |
OBS 검은화면, 디스플레이 캡쳐 오류, NVIDIA 달린 컴퓨터, 다른 블로그들이 놓치는 해결책 (0) | 2020.01.11 |
expo build:android 에러 잡기 (0) | 2019.11.24 |
Something went wrong. expo 앱 (0) | 2019.10.29 |
Comments