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

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples/scss/gulpfile.js')
-rw-r--r--examples/scss/gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/scss/gulpfile.js b/examples/scss/gulpfile.js
index 4232d3f..b9d0ecb 100644
--- a/examples/scss/gulpfile.js
+++ b/examples/scss/gulpfile.js
@@ -5,7 +5,7 @@ const sass = require('gulp-sass')(require('sass'));
gulp.task('default', () => {
return gulp.src('./src/**/*.scss')
- .pipe(sass({outputStyle: 'expanded'}).on('error', sass.logError))
+ .pipe(sass({ outputStyle: 'expanded' }).on('error', sass.logError))
.pipe(gulp.dest('./dest'));
});