Skip to content

Instantly share code, notes, and snippets.

View christopherdowson's full-sized avatar

Christopher Dowson christopherdowson

View GitHub Profile
@christopherdowson
christopherdowson / gulpfile.js
Last active September 19, 2019 11:37
Sample Gulpfile
// General use modules
var gulp = require('gulp'); // For obvious reasons
var gutil = require('gulp-util'); // Because nothing works without it
var watch = require('gulp-watch'); // It know what you're up to
var plumber = require('gulp-plumber'); // Stops errors from breaking Gulp
var gulpif = require('gulp-if'); // Logical, Captain
var argv = require('yargs').argv; // I DON'T KNOW WHAT WE'RE YELLING ABOUT!
var filter = require('gulp-filter'); // Filters things, I guess?