aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-08-26 00:35:38 -0700
committerChris Rebert <[email protected]>2015-08-26 00:35:38 -0700
commitab4b463304ac10737e044036c149dd425e795516 (patch)
tree9bc844dcee0d7ddfb1bdc6764b1d07b8822fe675
parentbf31c8b9d9fc48501c642f8ec58abf5dcda7aafa (diff)
parent6c8bf4ca88cfb004e3199f91c524e6350f5123ce (diff)
downloadbootstrap-ab4b463304ac10737e044036c149dd425e795516.tar.xz
bootstrap-ab4b463304ac10737e044036c149dd425e795516.zip
Merge pull request #17328 from twbs/babel-dev
Add babel:dev to dist-js so `grunt test` doesn't use stale JS
-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']);