cli: 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.
Using node v6.0 this error is reported:
(node:61377) 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.
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Reactions: 127
- Comments: 22
Commits related to this issue
- back again to 4.4 because many modules still not support 6.0 like https://github.com/sequelize/cli/issues/291 #4 — committed to digitaldeacon/hives by metaxy 8 years ago
- Merge pull request #291 from exercism/changelog-cleanup Cleanup CHANGELOG user links — committed to codetriage-readme-bot/cli by kytrinyx 8 years ago
node v6 is still not supported in many packages. Consider going back to v5.
“Node.js v5 will continue to be supported for the next two months in order to give developers currently using v5 time to transition to Node.js v6.”
https://nodejs.org/en/blog/release/v6.0.0/
https://github.com/gulpjs/gulp/issues/1571
Upgrading npm to latest removed these errors for me:
npm upgrade -g npm
Guys it is just a warning. The CLI still works. More details can be found here https://github.com/gulpjs/gulp/issues/1571
yes, it’s just a warning, but when you’re running a script that has messages you care about this is a very large amount of annoying noise.
that said, for me, on v6.2.1, @trevordmiller 's solution to run
npm upgrade -g npm
solved it for me. thanks @trevordmiller !how update graceful-fs
@arnonhongklay V6 is stable. They no longer use the term stable, and instead use “current” (which 6 is right now).
I’m on node v6.4.0 and npm v3.10.6 and still experiencing this issue.
Here is a tree of sequelize dependencies that use graceful-fs. If you want this warning to disappear faster, contact the maintainers and ask them to upgrade their dependencies so they will only use graceful-fs version 4 or greater. Afterwards, the warning will disappear.
I waiting for v6 stable
In order to remove those errors I had to run this in the terminal
curl -L https://www.npmjs.org/install.sh | sh
then upgradednpm
to the latest and put node on version6.0.0
I am using n, I switch from node
5
to6
, I ran the typicalnode rebuild node-sass
and it shows the error:(node:61377) 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.
That error/warning doesn’t show up anymore once I installed node
6.0.0
.I think that one of the main issues here, is the node version that you used when the project begun, so the fixes of one dev wouldn’t the same for the other devs.
Is very hard to believe that every time we switch to a new version of node or any other package is upgraded, we have to live this hell, I’ve been trying to make my project to run for around 3 hours. It’s ridiculous.
Hi
I am still finding this issue. Request to help. My version details are in the below screenshot.
I’m on node v6.11.2 and npm v3.10.10 and still experiencing this issue.