ci: releasing typedoc

This commit is contained in:
Mihajlo Medjedovic 2023-07-27 19:20:14 +02:00
parent 2053c858ac
commit eeb4000efe
3 changed files with 13 additions and 13 deletions

View File

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

View File

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

View File

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