diff options
| author | Chris Rebert <[email protected]> | 2015-08-26 00:35:38 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-08-26 00:35:38 -0700 |
| commit | ab4b463304ac10737e044036c149dd425e795516 (patch) | |
| tree | 9bc844dcee0d7ddfb1bdc6764b1d07b8822fe675 | |
| parent | bf31c8b9d9fc48501c642f8ec58abf5dcda7aafa (diff) | |
| parent | 6c8bf4ca88cfb004e3199f91c524e6350f5123ce (diff) | |
| download | bootstrap-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.js | 2 |
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']); |
