grunt-install-workspace-deps
Grunt task that npm install
all dependencies of modules present in the same folder (workspace)
How it works?
Scan all folders inside your workspace folder looking for modules and npm install
all dependencies.
Configuration
By default all folders in your workspace root folder are scanned for modules. If you want to change this behaviour,
just set the modules
option:
grunt.initConfig({
"install-workspace-deps": {
options: {
modules: ["modules/*/*"]
}
}
});
License
Copyright (c) 2015 Sierra Wireless
Licensed under the MIT license.