Skip to content

Instantly share code, notes, and snippets.

@timrwood
Created January 9, 2014 03:37
Show Gist options
  • Save timrwood/8329013 to your computer and use it in GitHub Desktop.
Save timrwood/8329013 to your computer and use it in GitHub Desktop.
Gulp task organization
gulp.task('qa') // jshint, jscs, tests
gulp.task('js') // require/browserify, concat, uglify
gulp.task('css') // stylus, autoprefixer, csso
gulp.task('img') // imagemin, copy, svgmin
gulp.task('html') // consolidate, htmlmin
gulp.task('font') // ??
gulp.task('sprite') // ??
gulp.task('build', ['qa', 'js', 'css', 'img', 'html'])
gulp.task('dev') // watch, server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment