Skip to content

Instantly share code, notes, and snippets.

@buglessir
Created January 18, 2019 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buglessir/2623364eb9b4de9205855a7884a2256e to your computer and use it in GitHub Desktop.
Save buglessir/2623364eb9b4de9205855a7884a2256e to your computer and use it in GitHub Desktop.
var gulp = require('gulp'),
sass = require('gulp-sass');
gulp.task('sass', function() {
return gulp.src('style/style.scss')
.pipe(sass())
.pipe(gulp.dest('style/'))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment