Remove css lint from default task

stable
Xavier Julián 2016-07-06 17:13:39 +02:00
parent af585e22bb
commit 716124edb8
1 changed files with 9 additions and 1 deletions

View File

@ -354,6 +354,14 @@ gulp.task("compile-themes", function(cb) {
});
gulp.task("styles", function(cb) {
return runSequence("scss-lint",
"sass-compile",
["app-css", "vendor-css"],
"main-css",
cb);
});
gulp.task("styles-lint", function(cb) {
return runSequence("scss-lint",
"sass-compile",
"css-lint-app",
@ -589,7 +597,7 @@ gulp.task("watch", function() {
livereload.listen();
gulp.watch(paths.jade, ["jade-watch"]);
gulp.watch(paths.sass_watch, ["styles"]);
gulp.watch(paths.sass_watch, ["styles-lint"]);
gulp.watch(paths.styles_dependencies, ["styles-dependencies"]);
gulp.watch(paths.svg, ["copy-svg"]);
gulp.watch(paths.coffee, ["app-watch"]);