Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions lib/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,8 +396,7 @@ var SolidusServer = function( options ){

return false;
},
ignoreInitial: true,
interval: 1000
ignoreInitial: true
});

watcher.on( 'add', function( file_path ){
Expand Down Expand Up @@ -495,4 +494,4 @@ SolidusServer.extensions = {
util.inherits( SolidusServer, EventEmitter );

// export our module
module.exports = SolidusServer;
module.exports = SolidusServer;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"sugar": "~1.3.8",
"xdate": "~0.8.0",
"moment": "~2.0.0",
"chokidar": "~0.6.2",
"chokidar": "^1.6.0",
"connect": "~2.8.4",
"hyperquest": "~0.1.7",
"lru-cache": "~2.3.1",
Expand Down
4 changes: 2 additions & 2 deletions test/solidus.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const DEFAULT_ENCODING = 'UTF8';
const FILESYSTEM_DELAY = 1100;
const FILESYSTEM_DELAY = 150;

var path = require('path');
var assert = require('assert');
Expand Down Expand Up @@ -1384,4 +1384,4 @@ describe( 'Solidus', function(){
done();
});
});
});
});