깃허브 organization에서 작업을 하다보면 라이브러리를 추가하게 되고 추가된 라이브러리를 적용하기 위해 npm ci를 사용해본 적이 있을 것이다. 나는 nodemodules를 지우고 다시 설치하면 잘 작동이 되었는데, 그날 따라 ci를 써서 번거로움을 지워버리고 싶었다. 그런데 왠일인지 오류가 나는 것이다.
watchman warning: Recrawled this watch 21 times, most recently because:
MustScanSubDirs UserDroppedTo resolve, please review the information on
https://facebook.github.io/watchman/docs/troubleshooting.html#recrawl
To clear this warning, run:
Recrawled this watch 21 times, most recently because:
MustScanSubDirs UserDroppedTo resolve, please review the information on
https://facebook.github.io/watchman/docs/troubleshooting.html#recrawl
To clear this warning, run:
이 오류가 나는데 npm start를 해도 실행이 되지 않았다. 그래서 해결방법에 대해서 찾아보게 되었는데, 터미널에 차례대로 입력하니 금방 해결이 되었다.
$ watchman watch-del-all
$ watchman shutdown-server
차례대로 입력하면 말끔히 해결될 것이다.