Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Created February 20, 2016 22:10
Show Gist options
  • Save brunokrebs/cfebdf018a6fd874841d to your computer and use it in GitHub Desktop.
Save brunokrebs/cfebdf018a6fd874841d to your computer and use it in GitHub Desktop.
gulp.task('watch', function() {
gulp.watch(['./src/**/*'], ['minify', 'uglify', 'copy-images']);
});
gulp.task('webserver', function() {
webserverInstance = gulp.src('./dev').pipe(webserver({ host: '0.0.0.0', port: 8000 }));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment