Skip to content
Permalink
Browse files
Fixed ordering of clean and move CSS
  • Loading branch information
robhawkes committed Jun 17, 2016
1 parent a261a49 commit 65d39b2
Showing 1 changed file with 2 additions and 2 deletions.
@@ -235,10 +235,10 @@ gulp.task('lint-gulpfile', lintGulpfile);
gulp.task('lint', ['lint-src', 'lint-test', 'lint-gulpfile']);

// Move CSS
gulp.task('move-css', moveCSS);
gulp.task('move-css', ['clean'], moveCSS);

// Build two versions of the library
gulp.task('build', ['lint', 'clean', 'move-css'], build);
gulp.task('build', ['lint', 'move-css'], build);

// Lint and run our tests
gulp.task('test', ['lint'], test);

0 comments on commit 65d39b2

Please sign in to comment.