Skip to content

Commit c594413

Browse files
committed
add jsdoc markdown support
Signed-off-by: Jeromy Cannon <[email protected]>
1 parent 3928004 commit c594413

File tree

4 files changed

+7
-16
lines changed

4 files changed

+7
-16
lines changed

Diff for: docs/Taskfile.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ tasks:
4848
build:
4949
cmds:
5050
- task: "build:jsdoc"
51-
- task: "build:jsdoc-to-markdown"
5251
- task: "build:copy"
5352
- task: "build:hugo"
5453

Diff for: docs/jsdoc.conf.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2+
"plugins": ["plugins/markdown"],
23
"source": {
3-
"include": [ "../src" ],
4-
"includePattern": ".+\\.(js(doc|x)?|mjs)$"
4+
"include": [ "../src" ],
5+
"includePattern": ".+\\.(js(doc|x)?|mjs)$"
56
},
67
"sourceType": "module",
78
"opts": {
8-
"recurse": true,
9-
"destination": "public/static/Classes"
9+
"recurse": true,
10+
"destination": "public/static/Classes"
1011
}
1112
}
12-

Diff for: docs/jsdoc2md.conf.json

-10
This file was deleted.

Diff for: src/commands/node.mjs

+2
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,8 @@ export class NodeCommand extends BaseCommand {
357357

358358
/**
359359
* stops and closes the port forwards
360+
* - calls the accountManager.close()
361+
* - for all portForwards, calls k8.stopPortForward(srv)
360362
* @returns {Promise<void>}
361363
*/
362364
async close () {

0 commit comments

Comments
 (0)