Skip to content

Instantly share code, notes, and snippets.

View emattiza's full-sized avatar

Evan Mattiza emattiza

View GitHub Profile
@emattiza
emattiza / gulpfile.js
Created January 18, 2017 13:33 — forked from soin08/gulpfile.js
Gulpfile.js to use with Django projects. Based on gulpfile.js from Google Web Starter Kit.
//Based on gulpfile.js from Google Web Starter Kit.
//https://github.com/google/web-starter-kit
'use strict';
// Include Gulp & Tools We'll Use
var gulp = require('gulp');
var $ = require('gulp-load-plugins')();
var del = require('del');
var runSequence = require('run-sequence');
var browserSync = require('browser-sync');