Excute command in gulp for sub folder
问题 My project is structured as follows: myapp -server.js -test --testcontent ---package.json -package.json I have two package.json files and I want to run npm install on the package.json inside the testcontent folder. If in the command line I go to myapp/test/testcontent and run npm install it works and it creates a new folder node_modules with the dependencies from the correct package.json . How can that be done from within gulp? I tried the following but it uses the package.json in myapp not