I have a list of websites like this:
project1/site
project2/site
project4/site
...
projectN/site
Each site
folder has inside node_modules
folder, gruntfile.js
file and a package.json
file. So they look like this:
project1/site/gruntfile.js
project1/site/package.json
project1/site/node_modules/
...
projectN/site/gruntfile.js
projectN/site/package.json
projectN/site/node_modules/
Everything is working fine with my tasks, plugins and stuff.
I am wondering if I can work this out with just one node_modules
folder on my root folder as my websites are using similar tasks.
project1/site/
project2/site/
...
projectN/site/
/node_modules/
Is this even possible? What do I need to do?