From abeb843718988fab978de7c75d6d45806f5d35a7 Mon Sep 17 00:00:00 2001 From: Stephan Date: Mon, 22 Apr 2019 19:25:00 +0200 Subject: [PATCH] Fixed broken pipe for sass --- gulpfile.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index e12916b..1f1db8c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -145,11 +145,10 @@ function serve (done) { // This is for the looks function style () { return src(input.style) - .pipe(plumber()) // .pipe(plumbError('STYLE PROBLEM')) - .pipe(sass({ + .pipe(sass({ includePaths: [input.vendor +'/**/*.s+(a|c)ss'] - })) + }).on('error', sass.logError)) .pipe(autoprefixer(['>= 4%', 'last 2 version'])) .pipe(dest(output.style)) .pipe(cleanCss())