Reputation:
When I try the sudo npm install --save-dev gulp
command, it returns this error:
npm WARN deprecated [email protected]: gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5
npm WARN deprecated [email protected]: please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js
npm WARN [email protected] No description
npm WARN [email protected] No repository field.
I've reinstalled gulp (multiple times) and node (& npm) and it still won't work. What do I do? (I'm using macOS 10.13.6 and I installed node via homebrew)
Upvotes: 0
Views: 582
Reputation: 127
Why are you trying to install with --save-dev
?
Installing Gulp globally should be done with --global
Have you checked their installation guide? https://gulpjs.org/getting-started.html
Upvotes: 1