From 2f7b04a192f271f63e83db9e2e6322b63abff252 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 9 Mar 2014 16:09:36 -0700 Subject: [PATCH] Reorder the Gruntfile a bit --- Gruntfile.js | 54 ++++++++++++++++++++++++++-------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 4aaef63ef6..8c8545b57c 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -82,26 +82,6 @@ module.exports = function (grunt) { } }, - csslint: { - options: { - csslintrc: 'less/.csslintrc' - }, - src: [ - 'dist/css/bootstrap.css', - 'dist/css/bootstrap-theme.css' - ], - examples: [ - 'docs/examples/**/*.css' - ], - docs: { - options: { - 'ids': false, - 'overqualified-elements': false - }, - src: 'docs/assets/css/src/docs.css' - } - }, - concat: { options: { banner: '<%= banner %>\n<%= jqueryCheck %>', @@ -164,6 +144,13 @@ module.exports = function (grunt) { } }, + qunit: { + options: { + inject: 'js/tests/unit/phantom.js' + }, + files: 'js/tests/index.html' + }, + less: { compileCore: { options: { @@ -237,6 +224,26 @@ module.exports = function (grunt) { } }, + csslint: { + options: { + csslintrc: 'less/.csslintrc' + }, + src: [ + 'dist/css/bootstrap.css', + 'dist/css/bootstrap-theme.css' + ], + examples: [ + 'docs/examples/**/*.css' + ], + docs: { + options: { + 'ids': false, + 'overqualified-elements': false + }, + src: 'docs/assets/css/src/docs.css' + } + }, + cssmin: { compress: { options: { @@ -314,13 +321,6 @@ module.exports = function (grunt) { } }, - qunit: { - options: { - inject: 'js/tests/unit/phantom.js' - }, - files: 'js/tests/index.html' - }, - connect: { server: { options: {