aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-03-09 16:09:36 -0700
committerMark Otto <[email protected]>2014-03-09 16:09:36 -0700
commit2f7b04a192f271f63e83db9e2e6322b63abff252 (patch)
tree647a9e7a93f5701c24d122bf6a5c34b4dc2d8494
parentaacafb2d5c28460477311e92de4de8ac88b2461a (diff)
downloadbootstrap-2f7b04a192f271f63e83db9e2e6322b63abff252.tar.xz
bootstrap-2f7b04a192f271f63e83db9e2e6322b63abff252.zip
Reorder the Gruntfile a bit
-rw-r--r--Gruntfile.js54
1 files changed, 27 insertions, 27 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 4aaef63ef..8c8545b57 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: {