Skip to content

Commit

Permalink
fix: build command on windows, rimraf version
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Volkov committed Feb 13, 2024
1 parent 7d196eb commit 04c9bde
Show file tree
Hide file tree
Showing 3 changed files with 547 additions and 74 deletions.
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) => {
rimraf.sync(BUILD_DIR);
rimraf.sync('styles/**/*.css');
rimraf.sync('styles/**/*.css', { glob: true });
done();
});

Expand Down
Loading

0 comments on commit 04c9bde

Please sign in to comment.