Skip to content
Snippets Groups Projects
Commit 6e38703d authored by Cédric Moreau's avatar Cédric Moreau
Browse files

Fix: cannot find request-promise module

parent 4bd15efd
No related branches found
No related tags found
No related merge requests found
......@@ -896,6 +896,9 @@ function webInit() {
}
function mainError(err) {
if (err.stack) {
logger.error(err.stack);
}
logger.error(err.code || err.message || err);
throw Error("Exiting");
}
......@@ -58,6 +58,7 @@
"q": "1.1.2",
"q-io": "1.13.2",
"request": "2.31.0",
"request-promise": "0.4.2",
"scryptb": "6.0.4",
"sha1": "1.1.0",
"sqlite3b": "3.1.2",
......@@ -77,7 +78,6 @@
"mocha": "2.2.5",
"mocha-eslint": "0.1.7",
"mocha-lcov-reporter": "1.0.0",
"request-promise": "0.4.2",
"sha1": "",
"should": "",
"supertest": ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment