grunt-update-submodules
v0.4.1
Published
Updates git submodules
Downloads
2,825
Maintainers
Readme
grunt-update-submodules
Grunt task to update git submodules.
Installing
Install and add to dependencies.
npm install grunt-update-submodules --save-dev
Load the task in Gruntfile.js
.
task.loadNpmTasks( "grunt-update-submodules" );
Usage
grunt.initConfig({
"update_submodules": {
default: {
options: {
// default command line parameters will be used: --init --recursive
}
},
withCustomParameters: {
options: {
params: "--force" // specifies your own command-line parameters
}
},
withNoParameter: {
options: {
params: false // blanks command-line parameters
}
}
}
});
License
Copyright (c) 2012 - 2014 Julian Aubourg Licensed under the MIT license.