Skip to content

Commit

Permalink
fix(build): Allow empty dist folder for clean task
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunnerLivio committed Jun 9, 2019
1 parent e39a941 commit d922e21
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 @@ -10,7 +10,7 @@ const LIB = join(__dirname, 'lib');
const terminus = ts.createProject(join(__dirname, 'tsconfig.json'));

gulp.task('clean', () => {
return gulp.src(DIST).pipe(clean())
return gulp.src(DIST, { allowEmpty: true }).pipe(clean())
});

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

0 comments on commit d922e21

Please sign in to comment.