Skip to content

Commit e0cdf64

Browse files
authored
update dependencies (#1041)
* update dependencies * update run scripts * add vscode debug configuration
1 parent 92f0f25 commit e0cdf64

File tree

6 files changed

+192
-209
lines changed

6 files changed

+192
-209
lines changed

.vscode/launch.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Debug self run",
11+
"program": "${workspaceFolder}/bin/typedoc",
12+
"cwd": "${workspaceFolder}/examples/self",
13+
"args": [
14+
"--mode",
15+
"file",
16+
"--name",
17+
"TypeDoc Documentation",
18+
"--tsconfig",
19+
"../../tsconfig.json",
20+
"--readme",
21+
"../../README.md",
22+
"--out",
23+
"doc/",
24+
"../../src/lib/"
25+
]
26+
},
727
{
828
"type": "node",
929
"request": "launch",

examples/self/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
cd ${0%/*}
3-
node ../../bin/typedoc --includeDeclarations --externalPattern **/lib/** --mode file --name "TypeDoc Documentation" --out doc/ ../../src/
3+
node ../../bin/typedoc --mode file --name "TypeDoc Documentation" --tsconfig ../../tsconfig.json --readme ../../README.md --out doc/ ../../src/lib/

examples/self/run.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
set curr_dir=%cd%
33
chdir /D "%~dp0"
44

5-
node ..\..\bin\typedoc --includeDeclarations --externalPattern **/lib/** --mode file --name "TypeDoc Documentation" --out doc\ ..\..\src\
5+
node ..\..\bin\typedoc --mode file --name "TypeDoc Documentation" --tsconfig ../../tsconfig.json --readme ../../README.md --out doc\ ..\..\src\lib\
66

7-
chdir /D "%curr_dir%"
7+
chdir /D "%curr_dir%"

0 commit comments

Comments
 (0)