From 81989acb958710629b71e9258df8f5060884a1e7 Mon Sep 17 00:00:00 2001 From: Gus Esquivel Date: Wed, 17 May 2017 08:24:42 -0500 Subject: [PATCH] fix gulp css packing --- gulpfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 1ef5b24..31da982 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -44,7 +44,10 @@ gulp.task('pack-js', function () { }); gulp.task('pack-css', function () { - return gulp.src([scssVnd + '/**/*.[s]?css', scssSrc + '/**/*.[s]?css']) + return gulp.src([scssVnd + '/**/*.css', + scssVnd + '/**/*.scss', + scssSrc + '/**/*.css', + scssSrc + '/**/*.scss']) .pipe(sass({ outputStyle: 'compressed', errLogToConsole: true