Commit 5891a364 authored by Vadym Gidulian's avatar Vadym Gidulian

Modified list of folders to delete after building

parent 3aa9c6df
......@@ -100,14 +100,17 @@ gulp.task('build', ['concat-css', 'concat-js', 'min-html']);
gulp.task('clean', ['build'], function () {
return del([
paths.cssDir,
paths.cssOut,
paths.cssOut + '/**/*.css',
'!' + paths.cssOut,
'!' + paths.cssOut + '/style.all.min.css',
paths.jsDir,
paths.jsOut,
paths.jsOut + '/**/*.js',
'!' + paths.jsOut,
'!' + paths.jsOut + '/script.all.min.js',
paths.lessDir
paths.lessDir,
paths.lessOut
]);
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment