Skip to content

Instantly share code, notes, and snippets.

View dodgycoffee's full-sized avatar
🐳
Code all the things

Alex Brindley dodgycoffee

🐳
Code all the things
View GitHub Profile
@dodgycoffee
dodgycoffee / webstoemp-gulpfile.js
Created May 11, 2020 01:12 — forked from jeromecoupe/webstoemp-gulpfile.js
Gulp 4 sample gulpfile.js. For a full explanation, have a look at https://www.webstoemp.com/blog/switching-to-gulp4/
"use strict";
// Load plugins
const autoprefixer = require("autoprefixer");
const browsersync = require("browser-sync").create();
const cp = require("child_process");
const cssnano = require("cssnano");
const del = require("del");
const eslint = require("gulp-eslint");
const gulp = require("gulp");