Skip to content

Instantly share code, notes, and snippets.

@buglessir
Created January 18, 2019 08:13
Show Gist options
  • Select an option

  • Save buglessir/d78ad3d2b32337345f7e1bed2b06f23f to your computer and use it in GitHub Desktop.

Select an option

Save buglessir/d78ad3d2b32337345f7e1bed2b06f23f to your computer and use it in GitHub Desktop.
var gulp = require('gulp'),
sass = require('gulp-sass'),
cssMinify = require('gulp-clean-css');
gulp.task('sass', function() {
return gulp.src('style/style.scss')
.pipe(sass())
.pipe(cssMinify())
.pipe(gulp.dest('style/'))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment