Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/tall-melons-switch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
Comment on lines +1 to +2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Incomplete changeset format—missing package metadata and description.

The changeset file is empty. According to the Changesets convention and the coding guidelines requiring automated releases to use Changesets, this file must include:

  1. Package name and version bump type (e.g., @clerk/shared: patch)
  2. A brief description of the change

Without this metadata, the release automation will not function correctly.

Based on the PR objectives (moving types and updating exports for TypeDoc), a typical changeset should look like:

 ---
----
+@clerk/shared: patch
+---
+
+Export new types folder for TypeDoc output

Please update the changeset with the appropriate package name, version bump type (patch/minor/major), and a description of the change.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
---
---
---
@clerk/shared: patch
---
Export new types folder for TypeDoc output
🧰 Tools
🪛 LanguageTool

[grammar] ~1-~1: Hier könnte ein Fehler sein.
Context: --- ---

(QB_NEW_DE)

🤖 Prompt for AI Agents
In .changeset/tall-melons-switch.md around lines 1 to 2, the changeset is empty
so release automation will fail; update the file to include the package
identifier and bump type (e.g., "@clerk/shared: patch" or the correct package(s)
and chosen bump level) on the first line and a short descriptive summary on the
following line(s) describing the change (for example: "Move types and update
exports for TypeDoc generation"). Ensure the package name(s), bump type(s), and
a concise description are present and saved.

2 changes: 1 addition & 1 deletion packages/shared/typedoc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./src/index.ts", "./src/react/types.ts", "./src/react/hooks/*.{ts,tsx}"],
"entryPoints": ["./src/index.ts", "./src/react/types.ts", "./src/react/hooks/*.{ts,tsx}", "./src/types/*.ts"],
"compilerOptions": {
"noImplicitAny": false
}
Expand Down
Loading