Skip to content

Commit 224fd78

Browse files
js2meSergey Volkov
andauthored
fix: build command on windows, rimraf version (#167)
Co-authored-by: Sergey Volkov <[email protected]>
1 parent 7d196eb commit 224fd78

File tree

3 files changed

+547
-74
lines changed

3 files changed

+547
-74
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const BUILD_DIR = path.resolve('build');
1111

1212
task('clean', (done) => {
1313
rimraf.sync(BUILD_DIR);
14-
rimraf.sync('styles/**/*.css');
14+
rimraf.sync('styles/**/*.css', { glob: true });
1515
done();
1616
});
1717

0 commit comments

Comments
 (0)