Skip to content

Commit 493cd48

Browse files
deps: bump typescript-docs-verifier from 2.5.3 to 3.0.1 (#1841)
Bumps [typescript-docs-verifier](https://github.com/bbc/typescript-docs-verifier) from 2.5.3 to 3.0.1. - [Release notes](https://github.com/bbc/typescript-docs-verifier/releases) - [Changelog](https://github.com/bbc/typescript-docs-verifier/blob/master/CHANGELOG) - [Commits](https://github.com/bbc/typescript-docs-verifier/commits) --- updated-dependencies: - dependency-name: typescript-docs-verifier dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-major ... --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex Potsides <[email protected]>
1 parent f7ecb44 commit 493cd48

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@
315315
"typedoc-plugin-mermaid": "^1.12.0",
316316
"typedoc-plugin-missing-exports": "^4.0.0",
317317
"typescript": "5.8.3",
318-
"typescript-docs-verifier": "^2.5.0",
318+
"typescript-docs-verifier": "^3.0.1",
319319
"wherearewe": "^2.0.1",
320320
"yargs": "^17.1.1",
321321
"yargs-parser": "^21.1.1"

src/align-versions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { isMonorepoRoot, getSubProjectDirectories, pkg } from './utils.js'
1010
/**
1111
* @typedef {import("./types.js").GlobalOptions} GlobalOptions
1212
* @typedef {import("./types.js").ReleaseOptions} ReleaseOptions
13-
* @typedef {import("listr").ListrTaskWrapper} Task
13+
* @typedef {import('listr').ListrTaskWrapper} Task
1414
*/
1515

1616
const tasks = new Listr([

src/dependency-check.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const parsers = {
2828
}
2929

3030
/**
31-
* @typedef {import("listr").ListrTaskWrapper} Task
31+
* @typedef {import('listr').ListrTaskWrapper} Task
3232
* @typedef {import('./types.js').GlobalOptions} GlobalOptions
3333
* @typedef {import('./types.js').DependencyCheckOptions} DependencyCheckOptions
3434
*/

src/docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url))
1414
/**
1515
* @typedef {import('./types.js').GlobalOptions} GlobalOptions
1616
* @typedef {import('./types.js').DocsOptions} DocsOptions
17-
* @typedef {import("listr").ListrTaskWrapper} Task
17+
* @typedef {import('listr').ListrTaskWrapper} Task
1818
*/
1919

2020
/**

src/document-check.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import { formatCode, formatError, fromRoot, hasTsconfig, readJson } from './util
1010
/**
1111
* @typedef {import('./types.js').GlobalOptions} GlobalOptions
1212
* @typedef {import('./types.js').DocsVerifierOptions} DocsVerifierOptions
13-
* @typedef {import("listr").ListrTaskWrapper} Task
14-
* @typedef {import("ts-node").TSError} TSError
13+
* @typedef {import('listr').ListrTaskWrapper} Task
14+
* @typedef {import('typescript-docs-verifier').CompilationError} CompilationError
1515
*/
1616

1717
/**
@@ -61,7 +61,8 @@ const tasks = new Listr(
6161
compilerOptions: {
6262
noImplicitAny: true,
6363
noEmit: true,
64-
skipLibCheck: true
64+
skipLibCheck: true,
65+
emitDeclarationOnly: false
6566
}
6667
}
6768
])
@@ -109,7 +110,7 @@ export default tasks
109110
/**
110111
*
111112
* @param {*} err
112-
* @returns {err is TSError}
113+
* @returns {err is CompilationError}
113114
*/
114115
function isTSError (err) {
115116
return Array.isArray(err.diagnosticCodes)

src/lint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url))
1616
/**
1717
* @typedef {import('./types.js').GlobalOptions} GlobalOptions
1818
* @typedef {import('./types.js').LintOptions} LintOptions
19-
* @typedef {import("listr").ListrTaskWrapper} Task
19+
* @typedef {import('listr').ListrTaskWrapper} Task
2020
* @typedef {import('./types.js').TSOptions} TSOptions
2121
*/
2222

src/release-rc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { isMonorepoParent, pkg, everyMonorepoProject, pipeOutput } from './utils
1010
/**
1111
* @typedef {import('./types.js').GlobalOptions} GlobalOptions
1212
* @typedef {import('./types.js').ReleaseRcOptions} ReleaseRcOptions
13-
* @typedef {import("listr").ListrTaskWrapper} Task
13+
* @typedef {import('listr').ListrTaskWrapper} Task
1414
*/
1515

1616
/**

src/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { isMonorepoProject, hasDocs, pkg } from './utils.js'
55
/**
66
* @typedef {import('./types.js').GlobalOptions} GlobalOptions
77
* @typedef {import('./types.js').ReleaseOptions} ReleaseOptions
8-
* @typedef {import("listr").ListrTaskWrapper} Task
8+
* @typedef {import('listr').ListrTaskWrapper} Task
99
*/
1010

1111
const tasks = new Listr([

src/spell-check.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import Listr from 'listr'
33

44
/**
55
* @typedef {import('./types.js').GlobalOptions} GlobalOptions
6-
* @typedef {import("listr").ListrTaskWrapper} Task
7-
* @typedef {import("ts-node").TSError} TSError
6+
* @typedef {import('listr').ListrTaskWrapper} Task
87
*/
98

109
const tasks = new Listr(

0 commit comments

Comments
 (0)