slushjs / gulp-install

Automatically install npm and bower packages if package.json or bower.json is found in the gulp file stream respectively
MIT License
106 stars 46 forks source link

Is it possible to install specific npm libary through "gulp-install"? #58

Open parameshwar-ande opened 6 years ago

parameshwar-ande commented 6 years ago

I see with the help of "gulp-install" library we can install all libraries which are mentioned in package.json. Something like this.

var install = require("gulp-install"); gulp.src(['./package.json']) .pipe(install());

But I couldn't find a way to install a specific library. Please let us know if there is anyway for this to achieve.