Skip to content

Commit

Permalink
Fix VError referrence
Browse files Browse the repository at this point in the history
  • Loading branch information
perry-mitchell committed Apr 23, 2017
1 parent 600d1c5 commit 05667a0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
**/*{.,-}min.js
source/test.js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"node-fetch": "~1.6.3",
"string-hash": "^1.1.3",
"uuid": "~2.0.1",
"verror": "^1.9.0",
"verror": "~1.9.0",
"webdav-fs": "~0.4.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion source/system/ArchiveManager.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

const VError = require("VError");
const VError = require("verror");
const createCredentials = require("./credentials.js");
const credentialsToSource = require("./archiveManagement/marshalling.js").credentialsToSource;
const getUniqueID = require("../tools/encoding.js").getUniqueID;
Expand Down
2 changes: 1 addition & 1 deletion source/system/archiveManagement/marshalling.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

const VError = require("VError");
const VError = require("verror");
const Archive = require("../Archive.js");
const Workspace = require("../Workspace.js");
const createCredentials = require("../credentials.js");
Expand Down

0 comments on commit 05667a0

Please sign in to comment.