File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1818 - name : Install Package dependencies
1919 run : npm ci
2020 - name : Build with TypeDoc
21- run : typedoc --excludeNotExported --excludePrivate --out docs src
21+ run : |
22+ typedoc \
23+ --excludeNotExported \
24+ --excludePrivate \
25+ --excludeExternals \
26+ --externalPattern "node_modules/**" \
27+ --readme README.md \
28+ --out docs \
29+ src
2230 - name : Deploy to Github Pages
2331 uses : JamesIves/github-pages-deploy-action@releases/v3
2432 with :
Original file line number Diff line number Diff line change 77 "rootDir" : " src" ,
88 "downlevelIteration" : true ,
99 "removeComments" : true ,
10- "strictNullChecks" : true
10+ "strictNullChecks" : true ,
11+ "baseUrl" : " src"
1112 },
12- "include" : [" src/**/*" ],
13- "exclude" : [" node_modules" , " **/*.spec.ts " ]
13+ "include" : [" src/**/*" , " spec/**/* " ],
14+ "exclude" : [" node_modules" ]
1415}
You can’t perform that action at this time.
0 commit comments