我正在使用gulp + sass + browserSync。
在出现sass错误时,我通过发送html通知开发者错误:
browserSync.notify(`<div style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: black; display: block;">${err}</div>`, 1000000);
假设,用户修复了该问题,则应该删除该通知。
browserSync.notify(' ', 0); // doesn't overwrite the previous notification
有办法吗?