move dryice from npm dep to submodule dep

This commit is contained in:
Fabian Jakobs 2011-07-11 12:10:02 +02:00
commit da0113ba98
2 changed files with 1 additions and 4 deletions

View file

@ -22,13 +22,9 @@
}
},
"dependencies": {
"pilot": ">=0.1.1",
"cockpit": ">=0.1.1",
"teleport": ">=0.2.6",
"asyncjs": ">=0.0.2",
"jsdom": ">=0.1.23",
"htmlparser": ">=1.7.2",
"dryice": ">=0.2.2",
"mime": ">=1.2.1"
},
"licenses": [{

View file

@ -1,6 +1,7 @@
require("./requireJS-node");
require.paths.unshift(__dirname + "/../lib");
require.paths.unshift(__dirname + "/pilot/lib");
require.paths.unshift(__dirname + "/dryice/lib");
require.paths.unshift(__dirname + "/async/lib");
require.paths.unshift(__dirname + "/jsdom/lib");
require.paths.unshift(__dirname);