Zulko / eagle.js

A hackable slideshow framework built with Vue.js
https://zulko.github.io/eaglejs-demo/
ISC License
4.08k stars 222 forks source link

npm install warnings #35

Closed JoelBender closed 6 years ago

JoelBender commented 6 years ago

These warnings are shown at the end of the npm install output:

npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.1.3

More info:

$ npm -v
3.5.2
$ lsb_release -a 
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.3 LTS
Release:    16.04
Codename:   xenial
yaodingyd commented 6 years ago

You can ignore this warning. fs-events is required on macOS.

JoelBender commented 6 years ago

Thinking my installation was out-of-date (yep!) I updated to npm 5.5.1 and node v8.9.3 and the error message is now more descriptive:

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.1.3: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

Now running I'm getting this error:

 ERROR  Failed to compile with 11 errors

 error  in ./src/Home.vue

Module build failed: Error: Node Sass does not yet support your current environment: Linux 64-bit with Unsupported runtime (57)

So now i'm hunting down Sass issues.

yaodingyd commented 6 years ago

You can try to rebuild node-sass npm rebuild node-sass. It works sometime.

JoelBender commented 6 years ago

Thank you, that did it, I'm off and running... :+1: