-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): bump @mdx-js/loader from 2.3.0 to 3.1.1 #34
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
base: main
Are you sure you want to change the base?
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 | ||
|---|---|---|---|---|
|
|
@@ -12,14 +12,14 @@ | |||
| "react": "^18.2.0", | ||||
| "react-dom": "^18.2.0", | ||||
| "@mdx-js/react": "^2.3.0", | ||||
| "@mdx-js/loader": "^2.3.0", | ||||
| "@mdx-js/loader": "^3.1.1", | ||||
|
||||
| "@mdx-js/loader": "^3.1.1", |
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.
This upgrade bumps
@mdx-js/loaderfrom version 2.3.0 to 3.1.1, which is a major version change. However,@mdx-js/reactremains at version 2.3.0.According to MDX documentation,
@mdx-js/loaderv3 and@mdx-js/reactv2 have compatibility issues. The loader v3 uses a new runtime architecture that expects@mdx-js/reactv3. This mismatch can cause runtime errors when rendering MDX content.You should also update
@mdx-js/reactto version 3.x to match the loader version. Update the package.json to use"@mdx-js/react": "^3.0.0"or later.