Skip to content

Commit

Permalink
added hooks for node/connect
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpvar committed Oct 30, 2010
1 parent 77451b6 commit 5c88a9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{ {
"name": "carena", "name": "carena",
"description": "", "description": "",
"version": "0.1.0", "version": "0.1.1",
"keywords": [ "" ], "keywords": [ "" ],
"maintainers": [ "maintainers": [
{ "name": "Elijah Insua", "web": "http://tmpvar.com" } { "name": "Elijah Insua", "web": "http://tmpvar.com" }
Expand All @@ -16,5 +16,6 @@
}, },
"dependencies": { "dependencies": {
"connect" : ">=0.2.7" "connect" : ">=0.2.7"
} },
"main" : "lib"
} }
2 changes: 1 addition & 1 deletion server/node/connect.js
@@ -1,5 +1,5 @@
var connect = require("connect"); var connect = require("connect");


exports.connect = function() { exports.connect = function() {
return connect.staticProvider({ root: __dirname + "/../lib", cache: true}); return connect.staticProvider({ root: __dirname + "/../../lib", cache: true});
}; };

0 comments on commit 5c88a9b

Please sign in to comment.