Skip to content

Commit

Permalink
Fix typedoc
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew W. Harn <[email protected]>
  • Loading branch information
awharn committed Feb 23, 2024
1 parent 6462480 commit 97b5658
Show file tree
Hide file tree
Showing 14 changed files with 31 additions and 13 deletions.
3 changes: 2 additions & 1 deletion packages/cli/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/core/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/imperative/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/provisioning/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
6 changes: 6 additions & 0 deletions packages/secrets/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/workflows/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/zosconsole/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/zosfiles/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/zosjobs/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/zoslogs/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/zosmf/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/zostso/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
3 changes: 2 additions & 1 deletion packages/zosuss/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"out": "./docs/typedoc/",
"exclude": "**/__tests__/**",
"exclude": ["**/__tests__/**"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": true
}
2 changes: 1 addition & 1 deletion typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"**/__tests__/**"
],
"cleanOutputDir": true,
"entryPoints": ["./"],
"entryPoints": ["./packages/*"],
"entryPointStrategy": "packages",
"readme": "./README.md"
}

0 comments on commit 97b5658

Please sign in to comment.