From 6fb049c6010eaba3e4a83a6fd5800cd47c5547b8 Mon Sep 17 00:00:00 2001 From: Andrey Morozov Date: Mon, 11 Mar 2024 15:56:46 +0300 Subject: [PATCH] chore: fix gulp clean task (#1416) --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index d64ac72aaa..2b87f3a05c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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(); });