diff options
| author | Chris Rebert <[email protected]> | 2014-05-13 02:08:25 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-05-13 02:08:25 -0700 |
| commit | 828a5baa00093b5fd9ddcb83251775d2b4f40092 (patch) | |
| tree | 50c9f6db756960223eb3a18a30a914c9c1b7d728 | |
| parent | 19ac6e59b316c3867c0edee03517a8a28f76544f (diff) | |
| download | bootstrap-828a5baa00093b5fd9ddcb83251775d2b4f40092.tar.xz bootstrap-828a5baa00093b5fd9ddcb83251775d2b4f40092.zip | |
remove update-shrinkwrap from the default Grunt task
Most folks shouldn't care about the shrinkwrap.
It should only be run on-demand, not as a routine/periodic thing.
| -rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 739ab5f6a..1373e3e1b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -434,7 +434,7 @@ module.exports = function (grunt) { grunt.registerTask('dist', ['clean', 'dist-css', 'copy:fonts', 'dist-js', 'dist-docs']); // Default task. - grunt.registerTask('default', ['test', 'dist', 'build-glyphicons-data', 'build-customizer', 'update-shrinkwrap']); + grunt.registerTask('default', ['test', 'dist', 'build-glyphicons-data', 'build-customizer']); // Version numbering task. // grunt change-version-number --oldver=A.B.C --newver=X.Y.Z |
