Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Dec 26, 2020
1 parent 45a7423 commit bb14641
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"del": "^6.0.0",
"escape-goat": "^3.0.0",
"escape-string-regexp": "^4.0.0",
"execa": "^4.1.0",
"execa": "^5.0.0",
"github-url-from-git": "^1.5.0",
"has-yarn": "^2.1.0",
"hosted-git-info": "^3.0.7",
Expand All @@ -52,31 +52,31 @@
"listr": "^0.14.3",
"listr-input": "^0.2.1",
"log-symbols": "^4.0.0",
"meow": "^8.0.0",
"meow": "^8.1.0",
"minimatch": "^3.0.4",
"new-github-release-url": "^1.0.0",
"npm-name": "^6.0.1",
"onetime": "^5.1.2",
"open": "^7.3.0",
"ow": "^0.18.0",
"ow": "^0.21.0",
"p-memoize": "^4.0.1",
"p-timeout": "^3.2.0",
"p-timeout": "^4.1.0",
"pkg-dir": "^5.0.0",
"read-pkg-up": "^7.0.1",
"rxjs": "^6.6.3",
"semver": "^7.3.2",
"semver": "^7.3.4",
"split": "^1.0.1",
"symbol-observable": "^2.0.3",
"symbol-observable": "^3.0.0",
"terminal-link": "^2.1.1",
"update-notifier": "^5.0.0"
"update-notifier": "^5.0.1"
},
"devDependencies": {
"ava": "^2.3.0",
"execa_test_double": "^4.0.1",
"mockery": "^2.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.1",
"xo": "^0.34.1"
"sinon": "^9.2.2",
"xo": "^0.36.1"
},
"ava": {
"files": [
Expand Down
2 changes: 1 addition & 1 deletion source/npm/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const fs = require('fs');
const path = require('path');
const execa = require('execa');
const pTimeout = require('p-timeout');
const ow = require('ow');
const {default: ow} = require('ow');
const npmName = require('npm-name');
const chalk = require('chalk');
const pkgDir = require('pkg-dir');
Expand Down
2 changes: 1 addition & 1 deletion source/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const issueRegex = require('issue-regex');
const terminalLink = require('terminal-link');
const execa = require('execa');
const pMemoize = require('p-memoize');
const ow = require('ow');
const {default: ow} = require('ow');
const pkgDir = require('pkg-dir');
const gitUtil = require('./git-util');
const npmUtil = require('./npm/util');
Expand Down

0 comments on commit bb14641

Please sign in to comment.