You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have linked a dependency of my app using npm link in my-dep and running npm link my-dep in the app. Starting the app with npm start works fine, but when I run npm run build to rebuild the dependency while the server is running, it crashes with the following error messages
events.js:174
throw er; // Unhandled 'error' event
^
Error: EPERM: operation not permitted, stat '<dep-path>\dist\cwm'
Emitted 'error' event at:
at FSWatcher._handleError (<app-path>\node_modules\budo\node_modules\chokidar\index.js:260:10)
at FSWatcher.<anonymous> (<app-path>\node_modules\budo\node_modules\chokidar\lib\nodefs-handler.js:470:14)
at FSReqWrap.oncomplete (fs.js:153:21)
What might cause this issue?
The text was updated successfully, but these errors were encountered:
I have linked a dependency of my app using
npm link
inmy-dep
and runningnpm link my-dep
in the app. Starting the app withnpm start
works fine, but when I runnpm run build
to rebuild the dependency while the server is running, it crashes with the following error messagesWhat might cause this issue?
The text was updated successfully, but these errors were encountered: