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"] +}