tag-youre-it/Gulpfile.js
2015-09-26 14:02:03 +02:00

18 lines
No EOL
526 B
JavaScript

var gulp = require('gulp');
var browserSync = require('browser-sync').create();
// use default task to launch Browsersync and watch JS files
gulp.task('serve', function () {
// Serve files from the root of this project
browserSync.init({
server: {
baseDir: "./",
index: "prototype-menu.html"
}
});
// add browserSync.reload to the tasks array to make
// all browsers reload after tasks are complete.
gulp.watch("**/*").on('change', browserSync.reload);
});