-
Notifications
You must be signed in to change notification settings - Fork 168
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
feat: add browserify and more packages #169
Conversation
WalkthroughThe changes in the Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
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 as PR comments)
Additionally, you can add CodeRabbit Configration 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.
"console-browserify": { | ||
"version": "*" | ||
}, |
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.
Dependency versions are set to "*". Consider specifying exact versions to avoid potential compatibility issues.
Using wildcard versions can lead to unpredictable behavior in production due to updates in dependencies that might introduce breaking changes. It's recommended to lock dependencies to specific versions or at least use version ranges to safeguard against breaking changes. Here's an example change for one of the dependencies:
- "console-browserify": {
- "version": "*"
+ "console-browserify": {
+ "version": "1.2.0"
}
Please apply similar changes for other dependencies.
Also applies to: 18192-18194, 18196-18198, 18200-18202, 18204-18206, 18208-18210, 18212-18214, 18216-18218, 18220-18222, 18224-18226, 18228-18230, 18232-18234, 18236-18238, 18240-18242, 18244-18246, 18248-18250, 18252-18254, 18256-18258, 18260-18262, 18264-18266, 18268-18270, 18272-18274, 18276-18278, 18280-18282
Add a batch of packages that codesandbox-client depends on to make self-hosting Sandpack bundler in mainland China possible |
[skip ci] ## [1.84.0](v1.83.0...v1.84.0) (2024-06-20) ### Features * add browserify and more packages ([#169](#169)) ([42b9f73](42b9f73))
Summary by CodeRabbit