Skip to content

Instantly share code, notes, and snippets.

@timkelty
Created March 25, 2015 21:48
Show Gist options
  • Save timkelty/e724a613e342da987630 to your computer and use it in GitHub Desktop.
Save timkelty/e724a613e342da987630 to your computer and use it in GitHub Desktop.
// Create a temp file in case we need to know if we're watching
// and browserSync.active won't do the trick
browserSync.emitter.on('init', function() {
touch.sync(tmpFile);
gulp.start('build');
}).on('service:exit', function() {
del.sync(tmpFile);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment