var browserSync = require('browser-sync');
var gulp = require('gulp');
// Site specific tasks
gulp.task('watch-local.dev', function() { init_watch ( false, 3001, { target: 'http://local.dev' } ); });
gulp.task('watch-www.example.com', function() { init_watch ( true, 3001, { target: 'https://www.example.com' } ); });
// Watch with fallbacks
function init_watch (https, port, proxy) {
var defaults = {
port: 3001,
https: true,
proxy: config.devUrl // { target: 'http://your-expected-site-name.com' }
};
if( typeof https !== 'boolean') { https = defaults.https; }
if( typeof port !== 'number') { port = defaults.port; }
if( typeof proxy === 'string') { proxy = { target: proxy }; } // fix the format if only target is passed
if( typeof proxy !== 'object') { proxy = defaults.proxy; }
browserSync({
proxy: proxy,
https: https,
port: port,
snippetOptions: {
whitelist: ['/wp-admin/admin-ajax.php'],
blacklist: ['/wp-admin/**']
}
});
gulp.watch([path.source + 'styles/**/*'], ['styles']);
gulp.watch([path.source + 'scripts/**/*'], ['jshint', 'scripts']);
gulp.watch([path.source + 'fonts/**/*'], ['fonts']);
gulp.watch([path.source + 'images/**/*'], ['images']);
gulp.watch(['bower.json', 'assets/manifest.json'], ['build']);
gulp.watch('**/*.php', function() {
browserSync.reload();
});
}
1 Response
Write a comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.