Skip to content

Commit

Permalink
Merge pull request StartBootstrap#32 from BlackrockDigital/master
Browse files Browse the repository at this point in the history
require less to run before minify-css in gulpfile
  • Loading branch information
davidtmiller authored Aug 19, 2016
2 parents e8f4554 + 385481e commit b953fff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ gulp.task('less', function() {
});

// Minify CSS
gulp.task('minify-css', function() {
gulp.task('minify-css', ['less'], function() {
return gulp.src('css/clean-blog.css')
.pipe(cleanCSS({ compatibility: 'ie8' }))
.pipe(rename({ suffix: '.min' }))
Expand Down

0 comments on commit b953fff

Please sign in to comment.