Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gesquive/slate.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGus Esquivel <gesquive@gmail.com>2017-05-17 16:24:42 +0300
committerGus Esquivel <gesquive@gmail.com>2017-05-17 16:24:42 +0300
commit81989acb958710629b71e9258df8f5060884a1e7 (patch)
treec61cfa715d31052be7cd7b71ea1c7b60973a446d
parente25e11cbf28fe311d47978a9e1bc212dd3d3ae5a (diff)
fix gulp css packing
-rw-r--r--gulpfile.js5
1 files changed, 4 insertions, 1 deletions
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