Skip to content
Merged
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: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
"ignore": ["examples/**"]

Choose a reason for hiding this comment

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

high

The ignore field in the changeset configuration expects an array of package names, not file path globs. The pattern examples/** is a file path glob and will likely not work as intended to ignore the example packages.

To correctly ignore the example packages, you should list their names as defined in their respective package.json files. Based on the files in this repository, the package names are react-example and useGetIdTokenQuery.

Suggested change
"ignore": ["examples/**"]
"ignore": ["react-example", "useGetIdTokenQuery"]

}
Loading