isaacs / node-graceful-fs

fs with incremental backoff on EMFILE
ISC License
1.27k stars 147 forks source link

Update dependencies #101

Closed kdabo closed 7 years ago

kdabo commented 7 years ago

Recently I've made a switch to Node v.6, and it started creating problems with running builds with gulp. The error that I keep getting is:

(node:10185) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.

Updating graceful-fs module to the latest version didn't work. Running npm info graceful-fs | grep version:

I got following graceful-fs version: version: '4.1.10'

However, typing npm list graceful-fsI can see which versions of graceful-fs are currently installed:

npm list graceful-fs

slush-feedback@0.0.1 /Users/katarina/theme-builder

├─┬ browser-sync@2.18.1
│ ├─┬ chokidar@1.6.0
│ │ └─┬ fsevents@1.0.15
│ │   └─┬ node-pre-gyp@0.6.29
│ │     └─┬ tar@2.2.1
│ │       └─┬ fstream@1.0.10
│ │         └── graceful-fs@4.1.4
│ └─┬ fs-extra@0.30.0
│   └── graceful-fs@4.1.10
├─┬ gulp-nodemon@2.2.1
│ └─┬ gulp@3.9.1
│   └─┬ vinyl-fs@0.3.14
│     ├─┬ glob-watcher@0.0.6
│     │ └─┬ gaze@0.5.2
│     │   └─┬ globule@0.1.0
│     │     └─┬ glob@3.1.21
│     │       └── graceful-fs@1.2.3
│     └── graceful-fs@3.0.11
├─┬ gulp-swig@0.8.0
│ └─┬ gulp@3.5.6
│   └─┬ vinyl-fs@0.1.4
│     └── graceful-fs@2.0.3
└─┬ slush@1.1.1
  └─┬ glob@4.0.6
    └── graceful-fs@3.0.11

As you can see gulp deep down depends on a very old version of graceful-fs. Unfortunately, I can't update that myself using npm update graceful-fs.

kdabo commented 7 years ago

I have just discovered that this issue doesn't belong here.