Skip to content

Commit

Permalink
feat: revert default usePolling to false
Browse files Browse the repository at this point in the history
This also updates chokidar to 0.8.0, which supports OSX's FSEvent, so we don't need to do polling on Mac.
  • Loading branch information
vojtajina committed Dec 9, 2013
1 parent 1e79eb5 commit e88fbc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ var Config = function() {
this.colors = true;
this.autoWatch = true;
this.autoWatchBatchDelay = 250;
this.usePolling = true;
this.usePolling = false;
this.reporters = ['progress'];
this.singleRun = false;
this.browsers = [];
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"dependencies": {
"di": "~0.0.1",
"socket.io": "~0.9.13",
"chokidar": "~0.7.0",
"chokidar": "~0.8.0",
"glob": "~3.1.21",
"minimatch": "~0.2",
"http-proxy": "~0.10",
Expand Down

0 comments on commit e88fbc2

Please sign in to comment.