-
Notifications
You must be signed in to change notification settings - Fork 1
chore(changeset): v1.0.0 #42
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
Conversation
🦋 Changeset detectedLatest commit: 42b68e4 The changes in this PR will be included in the next version bump. This PR includes changesets to release 4 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Deploying react-native-youtube-bridge-example with
|
| Latest commit: |
c6bb73e
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://c845678f.react-native-youtube-bridge-example.pages.dev |
| Branch Preview URL: | https://chore-v1-0-0.react-native-youtube-bridge-example.pages.dev |
WalkthroughThis change documents the initial v1.0.0 release and monorepo restructuring of the Changes
Sequence Diagram(s)sequenceDiagram
participant Developer
participant GitHub Actions
participant Monorepo Packages
Developer->>GitHub Actions: Push changes / trigger release
GitHub Actions->>GitHub Actions: Install dependencies
GitHub Actions->>GitHub Actions: bun run build
GitHub Actions->>Monorepo Packages: Build all packages (@core, @react, @web, root)
GitHub Actions->>GitHub Actions: Create release PR or publish to npm
Possibly related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
✅ Files skipped from review due to trivial changes (1)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
🧹 Nitpick comments (1)
.github/workflows/release.yml (1)
24-26: Confirm the build isn’t executed twice and consider adding a test gate
bun run buildis now executed here and could also be triggered inside thebun run releasescript later in the workflow. If the release script already performs a build, this will lengthen the CI pipeline unnecessarily.
Additionally, there is still no explicit test step (bun run test) before publishing. Failing fast on tests typically saves time and avoids publishing broken artefacts.- name: Build - run: bun run build + run: bun run build + +# Optional ‑ run tests before we attempt to publish + - name: Test + run: bun run test
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (5)
.changeset/curly-pots-try.md(1 hunks).changeset/petite-monkeys-grin.md(1 hunks).changeset/small-moose-beam.md(1 hunks).changeset/sweet-keys-swim.md(1 hunks).github/workflows/release.yml(1 hunks)
🔇 Additional comments (4)
.changeset/sweet-keys-swim.md (1)
1-7: Changelog entry looks good
Front-matter syntax and semantics are correct; nothing else to flag..changeset/small-moose-beam.md (1)
1-6: Changelog entry looks good
Correct Changesets format and consistent messaging..changeset/curly-pots-try.md (1)
1-9: Changelog entry looks good
Accurately documents the monorepo migration and new feature..changeset/petite-monkeys-grin.md (1)
1-6: Changelog entry looks good
No issues detected.
Summary by CodeRabbit
New Features
Chores