Skip to content

Instantly share code, notes, and snippets.

View hmfoster's full-sized avatar

Hailey Balestra-Foster hmfoster

  • 0xmacro.com
  • Seattle
View GitHub Profile
@hmfoster
hmfoster / gulpfile.js
Created September 22, 2015 02:10
Use gulp to build your js, html, and css files for a MEAN stack app AND run your development and production environments
var gulp = require('gulp'),
runSequence = require('run-sequence'),
ngAnnotate = require('gulp-ng-annotate'),
jshint = require('gulp-jshint'),
del = require('del'),
uglify = require('gulp-uglify'),
concat = require('gulp-concat'),
cssmin = require('gulp-cssmin'),
htmlreplace = require('gulp-html-replace'),
autoprefixer = require('gulp-autoprefixer'),