aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-05-12 21:50:13 -0700
committerMark Otto <[email protected]>2014-05-12 21:50:13 -0700
commite52920ca8738590eff900cb6846414c945313ae7 (patch)
tree71fe3ef63383295b4c2cb3a3261979626b34ac71
parent8ee6a6be80eaf7a5b80e22d7d2a890e5339998b4 (diff)
downloadbootstrap-e52920ca8738590eff900cb6846414c945313ae7.tar.xz
bootstrap-e52920ca8738590eff900cb6846414c945313ae7.zip
no more concurrency
-rw-r--r--Gruntfile.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index ad16dd335..5dba24335 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -20,7 +20,7 @@ module.exports = function (grunt) {
var generateGlyphiconsData = require('./grunt/bs-glyphicons-data-generator.js');
var BsLessdocParser = require('./grunt/bs-lessdoc-parser.js');
var generateRawFiles = require('./grunt/bs-raw-files-generator.js');
- var updateShrinkwrap = require('./grunt/shrinkwrap.js');
+ // var updateShrinkwrap = require('./grunt/shrinkwrap.js');
// Project configuration.
grunt.initConfig({
@@ -388,9 +388,9 @@ module.exports = function (grunt) {
npmUpdate: {
command: 'npm update'
},
- npmShrinkWrap: {
- command: 'npm shrinkwrap --dev'
- }
+ // npmShrinkWrap: {
+ // command: 'npm shrinkwrap --dev'
+ // }
}
});
@@ -435,7 +435,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
@@ -453,6 +453,6 @@ module.exports = function (grunt) {
});
// Task for updating the npm packages used by the Travis build.
- grunt.registerTask('update-shrinkwrap', ['exec:npmUpdate', 'exec:npmShrinkWrap', '_update-shrinkwrap']);
- grunt.registerTask('_update-shrinkwrap', function () { updateShrinkwrap.call(this, grunt); });
+ // grunt.registerTask('update-shrinkwrap', ['exec:npmUpdate', 'exec:npmShrinkWrap', '_update-shrinkwrap']);
+ // grunt.registerTask('_update-shrinkwrap', function () { updateShrinkwrap.call(this, grunt); });
};