Skip to content

Instantly share code, notes, and snippets.

@khoipro
Created December 10, 2017 14:32
Show Gist options
  • Select an option

  • Save khoipro/fb2063c29f0c3e08bf8ffc31a2d87fa5 to your computer and use it in GitHub Desktop.

Select an option

Save khoipro/fb2063c29f0c3e08bf8ffc31a2d87fa5 to your computer and use it in GitHub Desktop.
Compile and minify output CSS
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