Skip to content

Commit

Permalink
chore: fix gulp clean task (#1416)
Browse files Browse the repository at this point in the history
  • Loading branch information
amje authored Mar 11, 2024
1 parent 04d67b2 commit 6fb049c
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 @@ -11,7 +11,7 @@ const BUILD_DIR = path.resolve('build');

task('clean', (done) => {
rimrafSync(BUILD_DIR);
rimrafSync('styles/**/*.css');
rimrafSync('styles/**/*.css', {glob: true});
done();
});

Expand Down

0 comments on commit 6fb049c

Please sign in to comment.