vinyl-fs dependency
See original GitHub issueHi everyone,
I just wanted to report that gulp uses an old version of vinyl-fs
(@0.3.0
is used, @2.4.2
is the newest).
The problem is that vinyl-fs@0.3.0 depends on graceful-fs@3.0.0
which is deprecated and marked as non working on the most recent versions of node.
dvitali ~ npm info vinyl-fs@0.3.0 dependencies
{ 'glob-stream': '^3.1.5',
'glob-watcher': '^0.0.6',
'graceful-fs': '^3.0.0',
'lodash.defaults': '^2.4.1',
'map-stream': '^0.1.0',
mkdirp: '^0.5.0',
'strip-bom': '^0.3.0',
through2: '^0.5.1',
'through2-map': '^1.3.0',
vinyl: '^0.2.0' }
The following warning is thrown
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.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:2
- Comments:5 (1 by maintainers)
Top Results From Across the Web
gulpjs/vinyl-fs: Vinyl adapter for the file system. - GitHub
A Vinyl adapter simply exposes a src(globs) and a dest(folder) method. Each return a stream. The src stream produces Vinyl objects, and the...
Read more >vinyl-fs - npm
Vinyl adapter for the file system.. Latest version: 3.0.3, last published: 5 years ago. Start using vinyl-fs in your project by running `npm ......
Read more >vinyl-fs: Versions | Openbase
Full version history for vinyl-fs including change logs. ... Remove lodash.isequal dependency due to changed behavior (94f7ac7); Use the sink stream utility ...
Read more >vinyl-fs 3.0.3 - Snyk Vulnerability Database
Does your project rely on vulnerable package dependencies? Automatically find and fix vulnerabilities affecting your projects. Snyk scans for vulnerabilities ( ...
Read more >@types/vinyl-fs | Yarn - Package Manager
Fast, reliable, and secure dependency management. ... This package contains type definitions for vinyl-fs ... yarn add @types/vinyl-fs ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The graceful-fs in the vinyl dependency won’t be upgraded due to it being a breaking version and vinyl-fs in gulp 3.x won’t be upgrade, again, because there are breaking changes. Use gulp 4 or ignore the deprecation warning.
Thanks for the info @phated.