Skip to content

Commit

Permalink
Merge pull request #1572 from BrowserSync/audit
Browse files Browse the repository at this point in the history
bug fixes
  • Loading branch information
shakyShane committed Jun 24, 2018
2 parents 19359cc + a89336b commit fda88b1
Show file tree
Hide file tree
Showing 6 changed files with 4,987 additions and 4,953 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ node_js:
- "8"
- "6"
- "4"
after_script: npm run cover
3 changes: 1 addition & 2 deletions lib/cli/transforms/copyCLIIgnoreToWatchOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export function copyCLIIgnoreToWatchOptions(incoming) {
return incoming;
}
return incoming.updateIn(["watchOptions", "ignored"], List([]), ignored => {
const userIgnore = List([]).concat(incoming.get("ignore"));
return ignored.concat(userIgnore);
return List([]).concat(ignored, incoming.get("ignore"));
});
}
Loading

0 comments on commit fda88b1

Please sign in to comment.