Skip to content

Commit a9854af

Browse files
authored
chore: update deps (#859)
1 parent 200a543 commit a9854af

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.aegir.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ module.exports = {
33
docs: {
44
entryPoint: 'utils'
55
}
6-
}
6+
}

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@types/chai-string": "^1.4.2",
6565
"@types/chai-subset": "^1.3.3",
6666
"@types/mocha": "^8.2.2",
67-
"@types/node": "^15.6.0",
67+
"@types/node": "^16.3.0",
6868
"@types/sinon": "^10.0.0",
6969
"buffer": "^6.0.3",
7070
"bytes": "^3.1.0",
@@ -82,7 +82,7 @@
8282
"cors": "^2.8.5",
8383
"electron-mocha": "^10.0.0",
8484
"env-paths": "^2.2.1",
85-
"esbuild": "0.11.5",
85+
"esbuild": "^0.12.15",
8686
"esbuild-register": "^2.3.0",
8787
"eslint": "^7.23.0",
8888
"eslint-config-ipfs": "^2.0.0",
@@ -98,13 +98,13 @@
9898
"lilconfig": "^2.0.2",
9999
"listr": "~0.14.2",
100100
"merge-options": "^3.0.4",
101-
"mocha": "^8.3.2",
101+
"mocha": "^9.0.2",
102102
"npm-package-json-lint": "^5.1.0",
103103
"nyc": "^15.1.0",
104104
"ora": "^5.4.0",
105105
"p-map": "4.0.0",
106106
"pascalcase": "^1.0.0",
107-
"playwright-test": "^3.0.0",
107+
"playwright-test": "^6.0.0",
108108
"polka": "^0.5.2",
109109
"premove": "^3.0.1",
110110
"proper-lockfile": "^4.1.2",
@@ -115,8 +115,8 @@
115115
"strip-bom": "4.0.0",
116116
"strip-json-comments": "^3.1.1",
117117
"tempy": "^1.0.1",
118-
"typedoc": "^0.20.35",
119-
"typescript": "4.2.3",
118+
"typedoc": "^0.21.2",
119+
"typescript": "^4.3.5",
120120
"update-notifier": "^5.0.0",
121121
"yargs": "^17.0.1"
122122
},
@@ -134,9 +134,10 @@
134134
"@types/semver": "^7.3.4",
135135
"@types/update-notifier": "^5.0.0",
136136
"@types/yargs": "^17.0.0",
137-
"electron": "^12.0.2",
137+
"electron": "^13.1.6",
138138
"iso-url": "^1.1.5",
139-
"sinon": "^10.0.0"
139+
"sinon": "^11.1.1",
140+
"util": "^0.12.4"
140141
},
141142
"engines": {
142143
"node": ">=14.0.0",

src/ts/typedoc-plugin.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ const path = require('path')
44
const fs = require('fs')
55

66
/**
7-
*
8-
* @param {import("typedoc/dist/lib/utils").PluginHost} PluginHost
7+
* @param {import("typedoc/dist/lib/application").Application} Application
98
*/
10-
const plugin = function (PluginHost) {
11-
const app = PluginHost.owner
9+
const plugin = function (Application) {
10+
const app = Application.owner
1211
const pkg = path.join(process.cwd(), 'package.json')
1312
/** @type {any} */
1413
let pkgJson

test/dependants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const git =
5757
}
5858

5959
describe('dependants', function () {
60-
this.timeout(120000)
60+
this.timeout(300000)
6161

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

0 commit comments

Comments
 (0)