UNPKG

rollup-plugin-browsersync

Version:
15 lines (13 loc) 382 B
var bs = require('browser-sync').create('rollup'); module.exports = function browsersync(browserSyncOptions) { return { name: 'browsersync', writeBundle: function(options) { if (!bs.active) { bs.init(browserSyncOptions || {server: '.'}); } else { bs.reload(options.file); } } } };