Skip to content

Commit

Permalink
Updated to latest connect
Browse files Browse the repository at this point in the history
  • Loading branch information
Marak committed Mar 7, 2011
1 parent 3b790aa commit b71cea3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -12,7 +12,8 @@
"lib": "lib"
},
"dependencies": {
"irrklang": ">= 0.0.1"
"irrklang": ">= 0.0.1",
"connect": ">= 1.0.0"
},
"engines": {
"node": "*"
Expand Down
2 changes: 1 addition & 1 deletion server.js
Expand Up @@ -80,7 +80,7 @@ function LoopServer (client, con) {

var connect = require('connect');
var server = connect.createServer()
.use(connect.staticProvider(__dirname + '/public'));
.use(connect.static(__dirname + '/public'));

server.listen(8080);

Expand Down

0 comments on commit b71cea3

Please sign in to comment.