Skip to content

Commit

Permalink
fix(grunt): wrong build order
Browse files Browse the repository at this point in the history
  • Loading branch information
sparanoid committed Sep 9, 2015
1 parent 9702f97 commit 1ae038d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,14 @@ module.exports = (grunt) ->
collapseWhitespace: true
conservativeCollapse: true
collapseBooleanAttributes: true
removeAttributeQuotes: false
removeAttributeQuotes: true
removeRedundantAttributes: true
useShortDoctype: false
removeEmptyAttributes: true
removeOptionalTags: true
removeEmptyElements: false
lint: false
keepClosingSlash: true
keepClosingSlash: false
caseSensitive: true
minifyJS: true
minifyCSS: true
Expand Down Expand Up @@ -357,7 +357,6 @@ module.exports = (grunt) ->
"htmlmin"
"xmlmin"
"minjson"
"cssmin"
]

copy:
Expand Down Expand Up @@ -645,9 +644,10 @@ module.exports = (grunt) ->
"csscomb"
"jekyll:dist"
"leading_quotes:main"
"concurrent:dist"
"cssmin"
"assets_inline"
"cacheBust"
"concurrent:dist"
"usebanner"
"cleanempty"
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"devDependencies": {
"autoprefixer": "^6.0.2",
"grunt": "^0.4.5",
"grunt-assets-inline": "^0.1.9",
"grunt-assets-inline": "^0.1.10",
"grunt-banner": "^0.5.0",
"grunt-browser-sync": "^2.1.1",
"grunt-bump": "^0.5.0",
Expand Down

0 comments on commit 1ae038d

Please sign in to comment.