Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

fsevents optional dependency returns not compatible with system

Iam installing babel core 6.26.0 per this documentation, everything goes smoothly except for the following error:

npm WARN optional Skipping failed optional dependency /babel-cli/chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: [email protected]
npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: [email protected]

I'm wondering if this is just noise? Or if there is a workaround someone might know of? I've seen some documentation around it but nothing concrete.

like image 708
logos_164 Avatar asked Dec 03 '22 11:12

logos_164


1 Answers

Yes, this is expected. fsevents is only supported on OSX, so on any other system you'll see a message that it has been skipped.

like image 149
loganfsmyth Avatar answered Jan 05 '23 06:01

loganfsmyth