Skip to content

Commit aedb37e

Browse files
committed
fix(gen:gulp:clean): also clean test dir
1 parent 96c1a7a commit aedb37e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const transpile = lazypipe()
3535
.pipe(babel);
3636

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

4141
gulp.task('babel', () => {

0 commit comments

Comments
 (0)