We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d2e2012 + 27aee2f commit e07996eCopy full SHA for e07996e
2 files changed
lib/default-config.js
@@ -292,6 +292,7 @@ module.exports = {
292
* @property scrollElements
293
* @type Array
294
* @default []
295
+ * @since 2.9.0
296
*/
297
scrollElements: [],
298
@@ -304,6 +305,7 @@ module.exports = {
304
305
* @property scrollElementMapping
306
307
308
309
310
scrollElementMapping: [],
311
lib/file-watcher.js
@@ -12,7 +12,7 @@ module.exports.plugin = function (bs) {
12
var emitter = bs.emitter;
13
14
var defaultWatchOptions = require("immutable").Map({
15
- ignored: /[\/\\]\./
+ ignored: /^([.][^.\/\\])|([\/\\]+[.][^.])/
16
})
17
.mergeDeep(
18
options.get("watchOptions") || options.get("watchoptions")
0 commit comments