How to install all the necessary modules from gulpfile.js

Is it possible to install all the necessary modules from gulpfile.js with the command line?

+6
source share
1 answer

Yes, you need to install the npm-install-all package . After that, try to run the commands

example: npm-install-all gulpfile.js

For more information: npm-install-all

+6
source

Source: https://habr.com/ru/post/1016724/


All Articles