Merge pull request #2838 from aiampogi/master

Updated grunt-update-submodules to 0.4.0
This commit is contained in:
Hannah Wolfe 2014-05-31 16:37:30 +01:00
commit d8a5be1977
2 changed files with 14 additions and 4 deletions

View File

@ -632,6 +632,16 @@ var path = require('path'),
'core/built/public/jquery.min.js': 'core/built/public/jquery.js'
}
}
},
// ### grunt-update-submodules
// Grunt task to update git submodules
"update_submodules": {
default: {
options: {
params: false // blanks command-line parameters
}
}
}
};
@ -892,7 +902,7 @@ var path = require('path'),
// `bower` does have some quirks, such as not running as root. If you have problems please try running
// `grunt init --verbose` to see if there are any errors.
grunt.registerTask('init', 'Prepare the project for development',
['shell:bower', 'default']);
['shell:bower', 'update_submodules', 'default']);
// ### Production assets
// `grunt prod` - will build the minified assets used in production.
@ -907,7 +917,7 @@ var path = require('path'),
// Compiles handlebars templates, concatenates javascript files for the admin UI into a handful of files instead
// of many files, and makes sure the bower dependencies are in the right place.
grunt.registerTask('default', 'Build JS & templates for development',
['update_submodules', 'handlebars', 'concat', 'copy:dev', 'emberBuild']);
['handlebars', 'concat', 'copy:dev', 'emberBuild']);
// ### Live reload
// `grunt dev` - build assets on the fly whilst developing
@ -934,7 +944,7 @@ var path = require('path'),
' - Copy files to release-folder/#/#{version} directory\n' +
' - Clean out unnecessary files (travis, .git*, etc)\n' +
' - Zip files in release-folder to dist-folder/#{version} directory',
['shell:bower', 'handlebars', 'concat', 'uglify', 'clean:release', 'copy:release', 'compress:release']);
['shell:bower', 'update_submodules', 'handlebars', 'concat', 'uglify', 'clean:release', 'copy:release', 'compress:release']);
};
// Export the configuration

View File

@ -79,7 +79,7 @@
"grunt-express-server": "~0.4.11",
"grunt-mocha-cli": "~1.4.0",
"grunt-shell": "~0.6.1",
"grunt-update-submodules": "~0.2.1",
"grunt-update-submodules": "~0.4.0",
"matchdep": "~0.3.0",
"mocha": "~1.15.1",
"nock": "0.27.2",