aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-08-25 23:58:27 -0700
committerChris Rebert <[email protected]>2015-08-25 23:59:22 -0700
commit6c8bf4ca88cfb004e3199f91c524e6350f5123ce (patch)
tree9bc844dcee0d7ddfb1bdc6764b1d07b8822fe675
parentbf31c8b9d9fc48501c642f8ec58abf5dcda7aafa (diff)
downloadbootstrap-6c8bf4ca88cfb004e3199f91c524e6350f5123ce.tar.xz
bootstrap-6c8bf4ca88cfb004e3199f91c524e6350f5123ce.zip
Add babel:dev to dist-js Grunt task so that `grunt test` doesn't use stale JS
[skip sauce]
-rw-r--r--Gruntfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 7babb0b93..f6348286d 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -462,7 +462,7 @@ module.exports = function (grunt) {
grunt.registerTask('test-js', ['eslint', 'jscs:core', 'jscs:test', 'jscs:grunt', 'qunit']);
// JS distribution task.
- grunt.registerTask('dist-js', ['concat', 'lineremover', 'babel:dist', 'stamp', 'uglify:core', 'commonjs']);
+ grunt.registerTask('dist-js', ['babel:dev', 'concat', 'lineremover', 'babel:dist', 'stamp', 'uglify:core', 'commonjs']);
grunt.registerTask('test-scss', ['scsslint']);