Skip to content

Commit fda88b1

Browse files
authored
Merge pull request #1572 from BrowserSync/audit
bug fixes
2 parents 19359cc + a89336b commit fda88b1

File tree

6 files changed

+4987
-4953
lines changed

6 files changed

+4987
-4953
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ node_js:
66
- "8"
77
- "6"
88
- "4"
9-
after_script: npm run cover

lib/cli/transforms/copyCLIIgnoreToWatchOptions.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export function copyCLIIgnoreToWatchOptions(incoming) {
55
return incoming;
66
}
77
return incoming.updateIn(["watchOptions", "ignored"], List([]), ignored => {
8-
const userIgnore = List([]).concat(incoming.get("ignore"));
9-
return ignored.concat(userIgnore);
8+
return List([]).concat(ignored, incoming.get("ignore"));
109
});
1110
}

0 commit comments

Comments
 (0)