-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Changesets config tweak #6733
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changesets config tweak #6733
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,5 +7,12 @@ | |
| "access": "restricted", | ||
| "baseBranch": "main", | ||
| "updateInternalDependencies": "patch", | ||
| "ignore": [] | ||
| "ignore": [ | ||
| "@roo-code/types", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor suggestion: Consider sorting these packages alphabetically for better maintainability: |
||
| "@roo-code/web-evals", | ||
| "@roo-code/web-roo-code", | ||
| "@roo-code/evals", | ||
| "@roo-code/ipc", | ||
| "@roo-code/telemetry" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I noticed that and are also private packages in the monorepo. Should these be added to the ignore list as well for consistency? |
||
| ] | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be helpful to add a comment here explaining why these packages are ignored? Something like:
This would help future contributors understand the purpose of this configuration.