From 55b342a259ada9eb316c5315572b5c2195c3eea0 Mon Sep 17 00:00:00 2001 From: AJ Ancheta <7781450+ancheetah@users.noreply.github.com> Date: Thu, 21 Aug 2025 13:46:53 -0400 Subject: [PATCH] chore: add typedoc --- contributing_docs/releases.md | 2 +- packages/oidc-client/typedoc.json | 2 +- packages/protect/package.json | 3 +++ packages/protect/typedoc.json | 4 ++++ 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 packages/protect/typedoc.json diff --git a/contributing_docs/releases.md b/contributing_docs/releases.md index 279d3b8ba2..096f2395a3 100644 --- a/contributing_docs/releases.md +++ b/contributing_docs/releases.md @@ -63,7 +63,7 @@ your `{packageRoot}/package.json` has the following: ``` "publishConfig": { - "access": true + "access": "public" } ``` diff --git a/packages/oidc-client/typedoc.json b/packages/oidc-client/typedoc.json index cfafd5a8f6..f4aa09ef1c 100644 --- a/packages/oidc-client/typedoc.json +++ b/packages/oidc-client/typedoc.json @@ -1,4 +1,4 @@ { "name": "@forgerock/oidc-client", - "entryPoints": ["src/index.ts"] + "entryPoints": ["src/index.ts", "src/types.ts"] } diff --git a/packages/protect/package.json b/packages/protect/package.json index 05a8cb7a39..fe000c8982 100644 --- a/packages/protect/package.json +++ b/packages/protect/package.json @@ -28,6 +28,9 @@ "dependencies": { "@forgerock/javascript-sdk": "4.7.0" }, + "publishConfig": { + "access": "public" + }, "nx": { "tags": ["scope:package"], "targets": { diff --git a/packages/protect/typedoc.json b/packages/protect/typedoc.json new file mode 100644 index 0000000000..c247b1c957 --- /dev/null +++ b/packages/protect/typedoc.json @@ -0,0 +1,4 @@ +{ + "name": "@forgerock/protect", + "entryPoints": ["src/index.ts", "src/types.ts"] +}