We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4fa983 commit 2c66bb7Copy full SHA for 2c66bb7
1 file changed
lib/file-watcher.js
@@ -11,13 +11,7 @@ module.exports.plugin = function (bs) {
11
var options = bs.options;
12
var emitter = bs.emitter;
13
14
- var defaultWatchOptions = require("immutable").Map({
15
- ignored: /^([.][^.\/\\])|([\/\\]+[.][^.])/
16
- })
17
- .mergeDeep(
18
- options.get("watchOptions") || options.get("watchoptions")
19
- )
20
- .toJS();
+ var defaultWatchOptions = options.get("watchOptions").toJS();
21
22
return options.get("files").reduce(function (map, glob, namespace) {
23
0 commit comments