Skip to content

Commit 9ea9816

Browse files
committed
chore: remove changeset requirement from manifest-ui package
- Add manifest-ui to changeset ignore list in config.json - Remove manifest-ui from changeset-check workflow paths - Update CLAUDE.md documentation to reflect the change
1 parent 6dd2707 commit 9ea9816

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"access": "public",
88
"baseBranch": "main",
99
"updateInternalDependencies": "patch",
10-
"ignore": ["@manifest/backend", "@manifest/frontend", "@manifest/shared", "@manifest/nodes"]
10+
"ignore": ["@manifest/backend", "@manifest/frontend", "@manifest/shared", "@manifest/nodes", "manifest-ui"]
1111
}

.github/workflows/changeset-check.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ============================================================================
22
# Changeset Check Workflow
33
# ============================================================================
4-
# Verifies that PRs modifying manifest or manifest-ui packages include a
5-
# changeset file describing the changes.
4+
# Verifies that PRs modifying the manifest package include a changeset file
5+
# describing the changes.
66
#
77
# This ensures all package changes are properly documented and versioned.
88
# ============================================================================
@@ -18,7 +18,6 @@ on:
1818
branches: [main]
1919
paths:
2020
- 'packages/manifest/**'
21-
- 'packages/manifest-ui/**'
2221

2322
jobs:
2423
changeset-check:

CLAUDE.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ This project uses [changesets](https://github.com/changesets/changesets) for ver
5252

5353
**You MUST create a changeset when modifying code in:**
5454
- `packages/manifest/**` → select **manifest** package
55-
- `packages/manifest-ui/**` → select **manifest-ui** package
5655

5756
### How to Create a Changeset
5857

@@ -63,7 +62,7 @@ pnpm changeset
6362
```
6463

6564
This will prompt you to:
66-
1. Select the affected package(s): `manifest` or `manifest-ui`
65+
1. Select the affected package: `manifest`
6766
2. Choose version bump type: `patch`, `minor`, or `major`
6867
3. Write a summary of the changes
6968

@@ -89,9 +88,8 @@ Fixed authentication bug in login flow
8988

9089
### Important Notes
9190

92-
- PRs modifying `manifest` or `manifest-ui` without a changeset will **fail CI**
91+
- PRs modifying `manifest` without a changeset will **fail CI**
9392
- The changeset summary should be user-facing (what changed, not how)
94-
- One changeset can include multiple packages if a change affects both
9593

9694
## Pull Request Guidelines
9795

0 commit comments

Comments
 (0)