Created
December 10, 2017 14:32
-
-
Save khoipro/fb2063c29f0c3e08bf8ffc31a2d87fa5 to your computer and use it in GitHub Desktop.
Compile and minify output CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gulp.task('build-styles', function() { | |
| return gulp.src('./src/scss/main.scss') | |
| .pipe(sass.sync({outputStyle: 'compressed'}).on('error', sass.logError)) | |
| .pipe(rename({ extname: '.min.css' })) | |
| .pipe(gulp.dest('./assets/css/')); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment