Skip to content

Instantly share code, notes, and snippets.

@megzozo
megzozo / gulpfile.js
Created January 25, 2018 13:05 — forked from chantastic/gulpfile.js
This a script for a Full Stack Talk, given 3/13/14. Feel free to follow along at your own pace.
var gulp = require('gulp');
var coffee = require('gulp-coffee');
gulp.task('scripts', function () {
gulp.src('src/*.coffee')
.pipe(coffee())
.pipe(gulp.dest('./'));
});
gulp.task('watch', function () {