From 31ba4a40b58691a8da08d1e31e3a1035db0fe872 Mon Sep 17 00:00:00 2001 From: Maxime Bergeron Date: Fri, 11 Oct 2013 11:34:59 -0400 Subject: [PATCH] Fixed build order --- Gruntfile.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 3a1972e..026fb63 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -73,7 +73,18 @@ module.exports = function(grunt) { uglify: { dist: { files: { - 'dist/bootstrap.min.js': ['js/*.js'] + 'dist/bootstrap.min.js': ['js/transition.js', + 'js/alert.js', + 'js/button.js', + 'js/carousel.js', + 'js/collapse.js', + 'js/dropdown.js', + 'js/modal.js', + 'js/tooltip.js', + 'js/popover.js', + 'js/scrollspy.js', + 'js/tab.js', + 'js/affix.js'] } } },