Skip to content

Commit

Permalink
Merge pull request #565 from apiaryio/kubula/update_deep-equal_json-p…
Browse files Browse the repository at this point in the history
…ointer

Update ajv, deep-equal, json-pointer, commander and other dependencies
  • Loading branch information
kuba-kubula authored Mar 26, 2021
2 parents 22ccd2d + c2f6628 commit ca75f18
Show file tree
Hide file tree
Showing 8 changed files with 2,004 additions and 1,991 deletions.
4 changes: 2 additions & 2 deletions lib/units/validateURI.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const url = require('url');
const { parse } = require('url');
const deepEqual = require('deep-equal');

/**
Expand All @@ -9,7 +9,7 @@ const deepEqual = require('deep-equal');
* @returns {Object<string, string | number>}
*/
const parseURI = (uri) => {
const { pathname, port, hash, query } = url.parse(uri, true);
const { pathname, port, hash, query } = parse(uri, true);
return {
pathname,
port,
Expand Down
31 changes: 0 additions & 31 deletions lib/utils/to-gavel-result.js

This file was deleted.

23 changes: 0 additions & 23 deletions lib/utils/tv4-to-headers-message.js

This file was deleted.

16 changes: 0 additions & 16 deletions lib/utils/warn-on-deprecation.js

This file was deleted.

Loading

0 comments on commit ca75f18

Please sign in to comment.