chore(git): Merge branch 'issue-1' of ssh://git.datacontroller.io:29419/dc/dc into issue-1
All checks were successful
Build / Build-and-ng-test (pull_request) Successful in 7m52s

This commit is contained in:
Mihajlo Medjedovic 2023-07-31 10:12:40 +02:00
commit 52d4b3eefc
3 changed files with 13 additions and 13 deletions

View File

@ -97,7 +97,7 @@ jobs:
run: | run: |
cd client cd client
npm run typedoc npm run typedoc
# deploy docs surfer put --token ${{ secrets.TSDOC_TOKEN }} --server tsdoc.datacontroller.io ../tsdoc /
- name: Upload assets to release - name: Upload assets to release
run: | run: |

View File

@ -29,7 +29,7 @@
"cy:run": "cypress run", "cy:run": "cypress run",
"audit:prod": "npm audit --omit=dev", "audit:prod": "npm audit --omit=dev",
"sasdocs": "sasjs doc && ./sasjs/utils/deploydocs.sh", "sasdocs": "sasjs doc && ./sasjs/utils/deploydocs.sh",
"typedoc": "typedoc --options typedoc.json && cd ../dc-devdocs" "typedoc": "typedoc --options typedoc.json && cd ../tsdoc"
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {

View File

@ -1,12 +1,12 @@
{ {
"out": "../dc-devdocs", "out": "../tsdoc",
"tsconfig": "./tsconfig.app.json", "tsconfig": "./tsconfig.app.json",
"entryPointStrategy": "expand", "entryPointStrategy": "expand",
"entryPoints": [ "entryPoints": [
"./src" "./src"
], ],
"exclude": "**/*+(index|.spec|.e2e).ts", "exclude": "**/*+(index|.spec|.e2e).ts",
"externalPattern": "**/node_modules/**", "externalPattern": "**/node_modules/**",
"excludeExternals": true, "excludeExternals": true,
"excludePrivate": true "excludePrivate": true
} }