Skip to content

Commit

Permalink
Merge pull request #466 from pelias/upgrade-joi
Browse files Browse the repository at this point in the history
feat(deps): Move from joi to @hapi/joi
  • Loading branch information
orangejulius authored Sep 13, 2019
2 parents 80ba1bc + 50f70fb commit 1f464a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"download-file-sync": "^1.0.4",
"fs-extra": "^8.0.0",
"iso3166-1": "^0.5.0",
"joi": "^14.0.0",
"@hapi/joi": "^15.0.0",
"klaw-sync": "^6.0.0",
"lodash": "^4.5.1",
"node-version-checker": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion schema.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const Joi = require('joi');
const Joi = require('@hapi/joi');

// Schema Configuration
// required:
Expand Down
2 changes: 1 addition & 1 deletion test/schema.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

const tape = require('tape');

const Joi = require('joi');
const Joi = require('@hapi/joi');
const schema = require('../schema');

function validate(config) {
Expand Down

0 comments on commit 1f464a7

Please sign in to comment.