Skip to content

Commit

Permalink
update dependencies (#1041)
Browse files Browse the repository at this point in the history
* update dependencies

* update run scripts

* add vscode debug configuration
  • Loading branch information
aciccarello committed Jul 26, 2019
1 parent 92f0f25 commit e0cdf64
Show file tree
Hide file tree
Showing 6 changed files with 192 additions and 209 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Expand Up @@ -4,6 +4,26 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug self run",
"program": "${workspaceFolder}/bin/typedoc",
"cwd": "${workspaceFolder}/examples/self",
"args": [
"--mode",
"file",
"--name",
"TypeDoc Documentation",
"--tsconfig",
"../../tsconfig.json",
"--readme",
"../../README.md",
"--out",
"doc/",
"../../src/lib/"
]
},
{
"type": "node",
"request": "launch",
Expand Down
2 changes: 1 addition & 1 deletion examples/self/run
@@ -1,3 +1,3 @@
#!/bin/sh
cd ${0%/*}
node ../../bin/typedoc --includeDeclarations --externalPattern **/lib/** --mode file --name "TypeDoc Documentation" --out doc/ ../../src/
node ../../bin/typedoc --mode file --name "TypeDoc Documentation" --tsconfig ../../tsconfig.json --readme ../../README.md --out doc/ ../../src/lib/
4 changes: 2 additions & 2 deletions examples/self/run.bat
Expand Up @@ -2,6 +2,6 @@
set curr_dir=%cd%
chdir /D "%~dp0"

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

chdir /D "%curr_dir%"
chdir /D "%curr_dir%"

0 comments on commit e0cdf64

Please sign in to comment.