-
-
Notifications
You must be signed in to change notification settings - Fork 93
Release 1.2.4-beta.2 #1322
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
Release 1.2.4-beta.2 #1322
Conversation
✅ Deploy Preview for rsdoctor ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
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.
Pull Request Overview
Release version bump from 1.2.3 to 1.2.4-beta.2 across all packages in the rsdoctor monorepo.
- Version updates across all package.json files
- Build process updates in core package to include prebundling
- New prebundle configuration and dependency management
Reviewed Changes
Copilot reviewed 13 out of 14 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
packages/webpack-plugin/package.json | Version bump to 1.2.4-beta.2 |
packages/utils/package.json | Version bump to 1.2.4-beta.2 |
packages/types/package.json | Version bump to 1.2.4-beta.2 |
packages/sdk/package.json | Version bump to 1.2.4-beta.2 |
packages/rspack-plugin/package.json | Version bump to 1.2.4-beta.2 |
packages/graph/package.json | Version bump to 1.2.4-beta.2 |
packages/document/package.json | Version bump to 1.2.4-beta.2 |
packages/core/rslib.config.ts | Added prebundle configuration and external dependency handling |
packages/core/prebundle.config.mjs | New prebundle configuration file for dependency management |
packages/core/package.json | Version bump, build script update, and dependency changes |
packages/components/package.json | Version bump to 1.2.4-beta.2 |
packages/client/package.json | Version bump to 1.2.4-beta.2 |
packages/cli/package.json | Version bump to 1.2.4-beta.2 |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
packages/core/rslib.config.ts
Outdated
import { join } from 'path'; | ||
|
||
const prebundleConfigPath = join(__dirname, './prebundle.config.mjs'); | ||
const prebundleConfigModule = await import(prebundleConfigPath); |
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.
Top-level await is being used outside of an async function or ES module context. This will cause a syntax error unless the file is configured as an ES module.
Copilot uses AI. Check for mistakes.
Summary
Release 1.2.4-beta.2
Related Links