Skip to content

Commit

Permalink
fix(gen:gulp:clean): also clean test dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Awk34 committed May 3, 2016
1 parent 96c1a7a commit aedb37e
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 @@ -35,7 +35,7 @@ const transpile = lazypipe()
.pipe(babel);

gulp.task('clean', () => {
return del(['generators/**/*']);
return del(['generators/**/*', './test/(**|!fixtures/node_modules|!fixtures/bower_components)/*']);
});

gulp.task('babel', () => {
Expand Down

0 comments on commit aedb37e

Please sign in to comment.