An error occurred while loading the file. Please try again.
Gulpfile.js 314 bytes
const gulp = require('gulp')
const sass = require('gulp-sass')
const concat = require('gulp-concat')
gulp.task('styles', function(done) {
  gulp.src('styles/**/*.scss')
    .pipe(sass({
        errLogToConsole: true
    }))
    .pipe(gulp.dest('./public/stylesheets/'))
    .pipe(concat('style.css'))
  done()