glebdmitriew / node-unzip-2

node.js cross-platform unzip using streams
MIT License
44 stars 39 forks source link

fstream dependency is old, in turn depends on old deprecated version of graceful-fs #13

Open robogeek opened 8 years ago

robogeek commented 8 years ago

When I npm install node-unzip-2 this message is printed:

npm WARN deprecated graceful-fs@3.0.8: graceful-fs version 3 and before will fail on newer node releases. Please update to graceful-fs@^4.0.0 as soon as possible.

This package depends on an old version of fstream (0.1.21) which in turn depends on an old version of graceful-fs (3.0.2)

The current fstream version (1.0.8) depends on a newer version of graceful-fs (4.1.2).

apydo commented 8 years ago

Could you please update to the current fstream to avoid the old graceful-fs 3 warning.

apydo commented 8 years ago

Here we are :

npm WARN deprecated graceful-fs@3.0.8: graceful-fs v3.0.0 and before will fail on node releases >= v6.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.

scarletsky commented 8 years ago

@glebdmitriew Hello, I've got the same warning because fstream package is outdate. Could you please upgrade fstream ?

ChALkeR commented 8 years ago

Note: that warning is soon to be reverted and would be turned into a throw.

Tracking: https://github.com/nodejs/node/issues/5213

I mean the runtime warning fs: re-evaluating native module sources is not supported., not the install-time warning, of course.

chriskinsman commented 6 years ago

I am stuck with this also. Has anyone forked and updated this yet?