Fix clean task of Gulp

Task 'clean' now compatible with multiple styles (Fixes #200)
This commit is contained in:
Fedor A. Fetisov 2017-05-23 17:12:28 +03:00 committed by Fedor A. Fetisov
parent a5320b07d7
commit 169b8d3b76

View File

@ -55,9 +55,9 @@ gulp.task('clean', function(callback) {
config.jsVendorPath, config.jsVendorPath,
config.jsPath + '/compiled/**/*', config.jsPath + '/compiled/**/*',
'!' + config.jsPath + '/compiled/.keep', '!' + config.jsPath + '/compiled/.keep',
config.chatStylesPath + '/default/templates_compiled/client_side/*.js', config.chatStylesPath + '/*/templates_compiled/client_side/*.js',
config.chatStylesPath + '/default/js/compiled/*.js', config.chatStylesPath + '/*/js/compiled/*.js',
config.pageStylesPath + '/default/templates_compiled/client_side/*.js' config.pageStylesPath + '/*/templates_compiled/client_side/*.js'
], callback); ], callback);
}); });