v2.18.8
版本发布时间: 2017-02-14 04:24:30
BrowserSync/browser-sync最新发布版本:v3.0.3(2024-09-25 00:17:50)
FIXED: re-implemented reloadDebounce
to better suit the Browsersync use-case. Now we debounce and buffer events to allow multiple files to be injected following the specified window of event silence.
- https://github.com/BrowserSync/browser-sync/issues/1192
- https://github.com/BrowserSync/browser-sync/issues/203
FIXED: de2e2fa added watchEvents
option to solve https://github.com/BrowserSync/browser-sync/issues/1291 - now you can override which file-watching events Browsersync will respond to.
For example, if you wanted to respond to the add
event, along with the default change
event, you could provide the following
browser-sync start --server --files "app/src" --watchEvents change add
or
const bs = require('browser-sync').create();
bs.init({
server: 'app',
files: ['app/src'],
watchEvents: ['add', 'change']
});
FIXED: c6d7d16 always send override: true
on public notify method to fix https://github.com/BrowserSync/browser-sync/issues/538
This means you can now silence the default notify messages, whilst still using your own.
const bs = require('browser-sync').create();
bs.init({
server: 'app',
notify: false
});
setInterval(function() {
bs.notify('5 seconds have passed!')
}, 5000);