From 169b8d3b766770abd7d8e933454c34047658baaa Mon Sep 17 00:00:00 2001 From: "Fedor A. Fetisov" Date: Tue, 23 May 2017 17:12:28 +0300 Subject: [PATCH] Fix clean task of Gulp Task 'clean' now compatible with multiple styles (Fixes #200) --- src/gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gulpfile.js b/src/gulpfile.js index a541157c..8bb1c620 100644 --- a/src/gulpfile.js +++ b/src/gulpfile.js @@ -55,9 +55,9 @@ gulp.task('clean', function(callback) { config.jsVendorPath, config.jsPath + '/compiled/**/*', '!' + config.jsPath + '/compiled/.keep', - config.chatStylesPath + '/default/templates_compiled/client_side/*.js', - config.chatStylesPath + '/default/js/compiled/*.js', - config.pageStylesPath + '/default/templates_compiled/client_side/*.js' + config.chatStylesPath + '/*/templates_compiled/client_side/*.js', + config.chatStylesPath + '/*/js/compiled/*.js', + config.pageStylesPath + '/*/templates_compiled/client_side/*.js' ], callback); });