Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created October 31, 2017 17:52
Show Gist options
  • Save indreklasn/3058801c8d091dd7fe90827d05f70fdc to your computer and use it in GitHub Desktop.
Save indreklasn/3058801c8d091dd7fe90827d05f70fdc to your computer and use it in GitHub Desktop.
gulpfile demo webpack form scratch
var gulp = require('gulp');
var sass = require('gulp-sass');
gulp.task('styles', function() {
gulp.src('sass/**/*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./css/'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment