Skip to content

Instantly share code, notes, and snippets.

View radarseven's full-sized avatar

Michael Reiner radarseven

  • York, PA
View GitHub Profile
// Dependencies
var gulp = require('gulp'); // Gulp!
var cheerio = require('gulp-cheerio'); // Cheerio, good chap!
var filter = require('gulp-filter'); // Filter a pipeline.
var plumber = require('gulp-plumber'); // Gulp Plumber
var rename = require('gulp-rename'); // Rename
var svgstore = require('gulp-svgstore'); // Combine SVG files into one
var svgmin = require('gulp-svgmin'); // Compress SVG files
// Paths
@radarseven
radarseven / README.md
Created August 1, 2017 03:57 — forked from amir-rahnama/README.md
A simple Webpack (with Dev Server) + Gulp Configuration + LiveReload + Babel to playground where you can code ES6 without the need for React

A simple Webpack + Gulpfile configuration wihtout any need for React.js that assumes you have the following project structure:

node_modules/ bower_components/ scripts/

Entry script is in scripts/entry.js

You should run gulp && gulp build-dev and you are good to go.