Skip to content

Commit

Permalink
chore: update deps (#859)
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain authored Jul 9, 2021
1 parent 200a543 commit a9854af
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .aegir.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ module.exports = {
docs: {
entryPoint: 'utils'
}
}
}
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"@types/chai-string": "^1.4.2",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.0",
"@types/node": "^16.3.0",
"@types/sinon": "^10.0.0",
"buffer": "^6.0.3",
"bytes": "^3.1.0",
Expand All @@ -82,7 +82,7 @@
"cors": "^2.8.5",
"electron-mocha": "^10.0.0",
"env-paths": "^2.2.1",
"esbuild": "0.11.5",
"esbuild": "^0.12.15",
"esbuild-register": "^2.3.0",
"eslint": "^7.23.0",
"eslint-config-ipfs": "^2.0.0",
Expand All @@ -98,13 +98,13 @@
"lilconfig": "^2.0.2",
"listr": "~0.14.2",
"merge-options": "^3.0.4",
"mocha": "^8.3.2",
"mocha": "^9.0.2",
"npm-package-json-lint": "^5.1.0",
"nyc": "^15.1.0",
"ora": "^5.4.0",
"p-map": "4.0.0",
"pascalcase": "^1.0.0",
"playwright-test": "^3.0.0",
"playwright-test": "^6.0.0",
"polka": "^0.5.2",
"premove": "^3.0.1",
"proper-lockfile": "^4.1.2",
Expand All @@ -115,8 +115,8 @@
"strip-bom": "4.0.0",
"strip-json-comments": "^3.1.1",
"tempy": "^1.0.1",
"typedoc": "^0.20.35",
"typescript": "4.2.3",
"typedoc": "^0.21.2",
"typescript": "^4.3.5",
"update-notifier": "^5.0.0",
"yargs": "^17.0.1"
},
Expand All @@ -134,9 +134,10 @@
"@types/semver": "^7.3.4",
"@types/update-notifier": "^5.0.0",
"@types/yargs": "^17.0.0",
"electron": "^12.0.2",
"electron": "^13.1.6",
"iso-url": "^1.1.5",
"sinon": "^10.0.0"
"sinon": "^11.1.1",
"util": "^0.12.4"
},
"engines": {
"node": ">=14.0.0",
Expand Down
7 changes: 3 additions & 4 deletions src/ts/typedoc-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ const path = require('path')
const fs = require('fs')

/**
*
* @param {import("typedoc/dist/lib/utils").PluginHost} PluginHost
* @param {import("typedoc/dist/lib/application").Application} Application
*/
const plugin = function (PluginHost) {
const app = PluginHost.owner
const plugin = function (Application) {
const app = Application.owner
const pkg = path.join(process.cwd(), 'package.json')
/** @type {any} */
let pkgJson
Expand Down
2 changes: 1 addition & 1 deletion test/dependants.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const git =
}

describe('dependants', function () {
this.timeout(120000)
this.timeout(300000)

if (os.platform() === 'win32') {
// TODO: travis windows builds can't clone git repos from the local
Expand Down

0 comments on commit a9854af

Please sign in to comment.