Skip to content

Commit f9b76e2

Browse files
authored
Align typedoc config with JupyterLab (#696)
* Align typedoc config with JupyterLab * Remove some doc warning --------- Co-authored-by: Frédéric Collonval <[email protected]>
1 parent 0d348b8 commit f9b76e2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+152
-198
lines changed

.licenserc.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ header:
2525
- 'binder/postBuild'
2626
- 'binder/start'
2727
- 'CNAME'
28-
- 'typedoc-theme'
2928
- 'LICENSE'
3029
- 'yarn.lock'
3130

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
"lint-staged": "^13.1.0",
5656
"prettier": "^3.0.0",
5757
"shell-quote": "^1.7.2",
58-
"typedoc": "^0.24.8",
59-
"typedoc-plugin-mdn-links": "^3.0.3",
58+
"typedoc": "^0.25.13",
59+
"typedoc-plugin-mdn-links": "^3.1.20",
6060
"typescript": "~5.1.3"
6161
},
6262
"jupyter-releaser": {

packages/algorithm/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
4040
"watch": "tsc --build --watch"
4141
},
42-
"typedoc": {
43-
"entryPoint": "./src/index.ts",
44-
"displayName": "algorithm"
45-
},
4642
"devDependencies": {
4743
"@lumino/buildutils": "^2.0.1",
4844
"@microsoft/api-extractor": "^7.36.0",

packages/algorithm/src/array.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ export namespace ArrayExt {
244244
/**
245245
* Find the index of the last value which matches a predicate.
246246
*
247-
* @param object - The array-like object to search.
247+
* @param array - The array-like object to search.
248248
*
249249
* @param fn - The predicate function to apply to the values.
250250
*

packages/algorithm/typedoc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": ["../../typedoc.base.json"],
3+
"entryPoints": ["src/index.ts"],
4+
"name": "algorithm",
5+
"readme": "none"
6+
}

packages/application/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
4040
"watch": "tsc --build --watch"
4141
},
42-
"typedoc": {
43-
"entryPoint": "./src/index.ts",
44-
"displayName": "application"
45-
},
4642
"dependencies": {
4743
"@lumino/commands": "^2.3.0",
4844
"@lumino/coreutils": "^2.1.2",

packages/application/typedoc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": ["../../typedoc.base.json"],
3+
"entryPoints": ["src/index.ts"],
4+
"name": "application",
5+
"readme": "none"
6+
}

packages/collections/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
4040
"watch": "tsc --build --watch"
4141
},
42-
"typedoc": {
43-
"entryPoint": "./src/index.ts",
44-
"displayName": "collections"
45-
},
4642
"dependencies": {
4743
"@lumino/algorithm": "^2.0.1"
4844
},

packages/collections/typedoc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": ["../../typedoc.base.json"],
3+
"entryPoints": ["src/index.ts"],
4+
"name": "collections",
5+
"readme": "none"
6+
}

packages/commands/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@
4646
"test:nobrowser": "cd tests && karma start",
4747
"watch": "tsc --build --watch"
4848
},
49-
"typedoc": {
50-
"entryPoint": "./src/index.ts",
51-
"displayName": "commands"
52-
},
5349
"dependencies": {
5450
"@lumino/algorithm": "^2.0.1",
5551
"@lumino/coreutils": "^2.1.2",

0 commit comments

Comments
 (0)