Skip to content

Instantly share code, notes, and snippets.

View cchoe1's full-sized avatar

Calvin Choe cchoe1

View GitHub Profile
@selahattinunlu
selahattinunlu / gulpfile.js
Created February 12, 2016 16:10
Basic Gulpfile - Sass
var gulp = require('gulp'),
sass = require('gulp-sass');
var sassConfig = {
inputDirectory: 'resources/sass/**/*.scss',
outputDirectory: 'assets/css',
options: {
outputStyle: 'expanded'
}
}