Skip to content

Commit

Permalink
Fix order when run task dist-css
Browse files Browse the repository at this point in the history
  • Loading branch information
ngengs committed Mar 20, 2017
1 parent 72c1e64 commit 5189eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ module.exports = function (grunt) {
// CSS distribution task.
grunt.registerTask('less-compile', ['less:compileCore']);
grunt.registerTask('sass-compile', ['sass:compileCore']);
grunt.registerTask('dist-css', ['sass-compile', 'cssmin:minifyCore', 'postcss:dist', 'csscomb:dist']);
grunt.registerTask('dist-css', ['sass-compile', 'postcss:dist', 'csscomb:dist', 'cssmin:minifyCore']);

// Full distribution task.
grunt.registerTask('dist', ['clean:dist', 'dist-css']);
Expand Down

0 comments on commit 5189eef

Please sign in to comment.