Skip to content

Commit 224ea14

Browse files
authored
Merge pull request #3143 from adumesny/master
doc fixes
2 parents cb3af1c + 7053ec6 commit 224ea14

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
run: |
4040
grunt
4141
webpack
42-
tsc --stripInternal
42+
tsc --project tsconfig.docs.json --stripInternal
4343
4444
- name: Generate all documentation
45-
run: yarn doc:all
45+
run: yarn doc
4646

4747
- name: Prepare deployment structure
4848
run: |

tsconfig.docs.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"skipLibCheck": true,
5+
"types": []
6+
},
7+
"include": [
8+
"./src/**/*.ts"
9+
],
10+
"exclude": [
11+
"./src/**/*.spec.ts",
12+
"./src/**/*.test.ts",
13+
"./spec/**/*",
14+
"./angular/**/*",
15+
"./demo/**/*",
16+
"./node_modules/**/*"
17+
]
18+
}

typedoc.html.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"$schema": "https://typedoc.org/schema.json",
33
"entryPoints": ["src/gridstack.ts"],
4+
"tsconfig": "tsconfig.docs.json",
45
"excludeExternals": false,
56
"out": "doc/html",
67
"exclude": [

typedoc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"$schema": "https://typedoc.org/schema.json",
33
"entryPoints": ["src/gridstack.ts"],
4+
"tsconfig": "tsconfig.docs.json",
45
"excludeExternals": false,
56
"out": "doc",
67
"plugin": ["typedoc-plugin-markdown"],

0 commit comments

Comments
 (0)