aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-02-04 02:04:23 -0800
committerMark Otto <[email protected]>2014-02-04 02:04:23 -0800
commitef3c560a06cce3b48a40f111d8bd8dd4bc2b2f9d (patch)
tree831f8567a685d4450a856cc1ae4038c2cf42463c /Gruntfile.js
parent1387784d601de3e4cb500859c8db40a9e21ef2d8 (diff)
downloadbootstrap-ef3c560a06cce3b48a40f111d8bd8dd4bc2b2f9d.tar.xz
bootstrap-ef3c560a06cce3b48a40f111d8bd8dd4bc2b2f9d.zip
Reorder grunt dist tasks to ensure JS gets copied over
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index e9e57afc1..55c4e46de 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -399,7 +399,7 @@ module.exports = function (grunt) {
grunt.registerTask('dist-docs', 'copy:docs');
// Full distribution task.
- grunt.registerTask('dist', ['clean', 'dist-css', 'copy:fonts', 'dist-docs', 'dist-js']);
+ 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']);