Skip to content

Commit

Permalink
fix: build command on windows, rimraf version (#167)
Browse files Browse the repository at this point in the history
Co-authored-by: Sergey Volkov <[email protected]>
  • Loading branch information
js2me and Sergey Volkov authored Feb 13, 2024
1 parent 7d196eb commit 224fd78
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 224fd78

Please sign in to comment.