-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Support jsx dev runtime #2045
Support jsx dev runtime #2045
Conversation
The JSX dev runtime exposes more debugging information to users. For example, React exposes positional information through React Devtools. Although #2035 started off as an issue to support the `__source` prop, I have refrained from actually supporting the `__source` prop, as it’s specific to React. The automatic dev runtime supports this information without patching props. Closes #2035
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
developmentSourceNode._source, | ||
{fileName: 'path/to/file.js', lineNumber: 1, columnNumber: 1}, | ||
'should expose source information in the automatic jsx dev runtime' | ||
) |
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.
The test above uses an undocumented private property of React elements. The test below asserts the generated source code. None of these tests is ideal, but I’m not sure which is worse. I suggest to keep only one of them though.
Codecov ReportBase: 100.00% // Head: 100.00% // No change to project coverage 👍
Additional details and impacted files@@ Coverage Diff @@
## main #2045 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 22 22
Lines 2050 2060 +10
=========================================
+ Hits 2050 2060 +10
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
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.
Looks good, one idea.
I wonder whether we should document that automatic runtimes need the /jsx-dev-runtime
for this to work. E.g., here: https://mdxjs.com/packages/mdx/#optionsjsxruntime
I believe we have some types for jsx
, jsxs
somewhere, should they include jsxDev
?
Should jsxDev
be needed in evaluate
, run
? https://mdxjs.com/packages/mdx/#evaluatefile-options, https://mdxjs.com/packages/mdx/#options-1
We should probably include some docs in https://mdxjs.com/packages/mdx/#optionsdevelopment as well
packages/mdx/test/compile.js
Outdated
'should expose source information in the automatic jsx dev runtime' | ||
) | ||
|
||
assert.equal( |
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.
Maybe good to move this one next to the jsx tests (L826), in a new test for automatic runtime
output?
Sometimes the output changes a bit and then its easier if all the output tests are next to eachother?
Good points. I’ll update the types and docs. I think maybe this should be a separate option. This change will be fine for React / Preact users, but other frameworks might not support the JSX dev runtime. I.e. hastscript and xastscript don’t support it. We may add it in these two specific packages, because they are part of unified, but there may be other JSX runtimes out there that don’t support it either. Of course people can set |
It might indeed break folks. I wonder if it can be considered a bug on the part of those runtimes, which can be solved by users by setting Alternatively, could we add a runtime check: as we’re in development, we could import both development and production, defaulting to production if |
Yes. The automatic dev runtime needs |
WDYT about:
I feel a lot for this, to prevent a breaking change. And as it is dev, it’s fine adding some more code. |
I don’t consider this to be a bug. A JSX automatic runtime implementation can fully function without supporting the dev runtime in Babel, TypeScript, SWC, and ESBuild. Although I wouldn’t mind making this assumption in a breaking change for MDX 3.0. Afaik most major JSX implementations support this.
I don’t understand. As far as I understand you mean to transform this (simplified): # Hello into this: import { jsx } from 'framework/jsx-runtime'
import { jsxDEV } from 'framework/jsx-dev-runtime'
export default function MDXContent() {
return jsx('h1', { children: 'Hello' })
} This still breaks if the framework doesn’t support the I suggest a build time warning (once) instead if Alternatively we could keep a hardcoded list of frameworks that support the automatic dev runtime. and just apply it for those. This isn’t elegant, but it would make it a non-breaking change without bothering any users. Do you know if it’s possible to query the npm registry to find out if such JSX runtimes even exist at all? If hastscript and xastscript are the only ones, we could just update this and not bother about this compatibility issue at all. |
Are you sure? I was under the impression that, if development is turned on in Babel, it takes |
Hmm, taking TS as an example, instructed to run in the automatic dev runtime: <a /> -> import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
const _jsxFileName = "file:///input.tsx";
_jsxDEV("a", {}, void 0, false, { fileName: _jsxFileName, lineNumber: 1, columnNumber: 1 }, this); I was missing the import * as runtime from "react/jsx-runtime";
let _jsx = runtime.jsx
if (runtime.jsxDEV) {
_jsx = runtime.jsxDEV
} else {
console.log('stuff')
}
... But as it’s a different specifier, we can’t fix it at runtime... |
I believe the Babel transform defaults to looking at Babel’s development mode, but it has an undocumented plugin specific development override, so the dev transform could be disabled explicitly in development mode. |
But as |
No, TypeScript uses the |
Anyway, I suspect the number of impacted users would be very low. React, Preact, and Emotion support the automatic runtime, Vue doesn’t use JSX transforms, we control hastscript and xastscript. |
Two things. TS still takes /jsx-dev-runtime. That's what I'm talking about. Every tool takes that export specifier. So we can use it too. And, we need to take jsxDEV from it. It might not exist. From what I understand, several runtimes don't have it. There is a large chance that people link the same file, with the same exports, to both export entries. Which is fine, whether they export jsxDEV from it or not, in that case. There is then only a tiny chance that someone has an export for /jsx-dev-runtime, without a jsxDEV, which is clearly wrong, and can crash. |
any update on this? |
The comment before your comment is the last update on this! I think that, to land this without breaking, we need to I am fine with introducing a crash when |
So at Qwik we have MDX support in our meta framework and recently introduced a click-to-component feature that leverages this: we tried using the PR and works great! I understand the worry about breaking changes, but virtually all the tools supports JSX-automatic, emit what MDX is doing in this PR right now (esbuild, rollup tsx plugins, and swc). It's part of JSX-automatic, if it breaks, i think the framework authors should fix it should fix it by exporting jsxDEV. In the meantime, we are forking MDX and ship this feature :) but we would love not having to do it. Thanks for your early response! this is such a cool project! |
I don’t want all Solid or Svelte users to suddenly break in a patch.
Perhaps you can spend the time to verify my above question. As that time is the thing that’s missing. |
I intend to finish this, but currently other issues have higher priority for me. Feel free to work on it if this has high priority for you. PS: It’s really cool to see how this is leveraged in Qwik! |
I tried to look into following the implementation suggested by @wooorm because i would love this PR being unblocked! I dont think it's realistic and good idea to make MDX have a different transform to jsxDev, when everything is doing the same. Instead, if what we want is to prevent a breaking change, i would create a new option, like |
Solid: Preact/React also implements Svelte does not use JSX Vue is not using jsx-automatic |
Thanks for looking that up! However, you also mention that @ryansolid I think Solid needs a |
@wooorm For me understanding, the mdx integration with solid does not use the same jsx-runtime as the one in solid, cuz they have a total custom JSX transform, none of mdx is directly useful, instead MDX relies on solid-jsx. Notice that solid itself does not have vdom. https://github.com/high1/solid-jsx/blob/main/package.json#L9-L10 which does support |
Preact, solid-jsx, svelte-jsx, vue, qwik... so far all frameworks of libraries support the jsx mode, follow the defacto spec of having Any tool supporting
The amazing side effect of this PR is enable amazing dev tools already existing in this frameworks to jump directly to the mdx/md file!! and make their devtools better integrate. |
This is historically correct. Currently, Solid does provide its own automatic JSX runtime. It seems to do so for a while already. You mentioned this above yourself:
It used to. And we link to it. As you show though, Solid now provides an automatic JSX runtime too.
There are two parts that are needed for an automatic runtime, development or not, to work:
As you and I checked and verified above, all projects (solid-jsx, svelte-jsx, react, preact, emotion) do both. But
It seems that
That is the purpose of this PR. The side effect of this PR would be breaking several Solid users in a patch release. |
Alright! https://github.com/solidjs/solid/pull/1393/files could we unblock this PR once solid merge the fix? :) |
Yes, that unblocks the PR, thank you! (Note though that I don’t know Solid enough to review the PR) |
yep! no worries, reached Ryan to see what we can do about it |
Solid merged the PR to add |
The only thing missing then is support for I see two solution to determine whether or not to use development mode:
|
1) makes the most sense to me. |
Ok, I’ll finish this PR then. |
so exciting! thank you team! you guys rock! @remcohaszing @wooorm |
Just confirming, solidjs merged the PR to support jsx-dev-runtime and made a release with the fix! |
Released, thanks both! :) |
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mdx-js/react](https://mdxjs.com) ([source](https://togithub.com/mdx-js/mdx)) | [`2.1.5` -> `2.2.1`](https://renovatebot.com/diffs/npm/@mdx-js%2freact/2.1.5/2.2.1) | [![age](https://badges.renovateapi.com/packages/npm/@mdx-js%2freact/2.2.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mdx-js%2freact/2.2.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mdx-js%2freact/2.2.1/compatibility-slim/2.1.5)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mdx-js%2freact/2.2.1/confidence-slim/2.1.5)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mdx-js/mdx</summary> ### [`v2.2.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.2.0...2.2.1) - [`e293eaf`](https://togithub.com/mdx-js/mdx/commit/e293eafa) Remove `assert/strict` for Node 14 **Full Changelog**: mdx-js/mdx@2.2.0...2.2.1 ### [`v2.2.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.5...2.2.0) ##### Features - [`641eb91`](https://togithub.com/mdx-js/mdx/commit/641eb917) Add support JSX development runtime by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2045](https://togithub.com/mdx-js/mdx/pull/2045) ##### Patches - [`3e0ab23`](https://togithub.com/mdx-js/mdx/commit/3e0ab236) Fix `@mdx-js/node-loader` from patching all runtimes ##### Docs - [`4a1415d`](https://togithub.com/mdx-js/mdx/commit/4a1415d2) Add note about use with `vite-plugin-react` - [`38c2d46`](https://togithub.com/mdx-js/mdx/commit/38c2d46a) Add note about `rollup@2` in Vite by [@​ryuujo1573](https://togithub.com/ryuujo1573) in [https://github.com/mdx-js/mdx/pull/2180](https://togithub.com/mdx-js/mdx/pull/2180) - [`caac5df`](https://togithub.com/mdx-js/mdx/commit/caac5df4) Update docs for `solid-js` supporting JSX - [`3a50cc3`](https://togithub.com/mdx-js/mdx/commit/3a50cc35) Add Solid to JSX section in Getting Started guide by [@​Djunnni](https://togithub.com/Djunnni) in [https://github.com/mdx-js/mdx/pull/2159](https://togithub.com/mdx-js/mdx/pull/2159) - [`1c83612`](https://togithub.com/mdx-js/mdx/commit/1c836126) Fix docs on types - [`2635caf`](https://togithub.com/mdx-js/mdx/commit/2635caf9) Replace deprecated Intellij plugin in docs by [@​slorber](https://togithub.com/slorber) in [https://github.com/mdx-js/mdx/pull/2178](https://togithub.com/mdx-js/mdx/pull/2178) **Full Changelog**: mdx-js/mdx@2.1.5...2.2.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/ziyadedher/ziyadedher). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC42Mi4xIiwidXBkYXRlZEluVmVyIjoiMzQuNjIuMSJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mdx-js/react](https://mdxjs.com) ([source](https://togithub.com/mdx-js/mdx)) | [`^1.6.22` -> `^2.0.0`](https://renovatebot.com/diffs/npm/@mdx-js%2freact/1.6.22/2.2.1) | [![age](https://badges.renovateapi.com/packages/npm/@mdx-js%2freact/2.2.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mdx-js%2freact/2.2.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mdx-js%2freact/2.2.1/compatibility-slim/1.6.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mdx-js%2freact/2.2.1/confidence-slim/1.6.22)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mdx-js/mdx</summary> ### [`v2.2.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.2.0...2.2.1) - [`e293eaf`](https://togithub.com/mdx-js/mdx/commit/e293eafa) Remove `assert/strict` for Node 14 **Full Changelog**: mdx-js/mdx@2.2.0...2.2.1 ### [`v2.2.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.5...2.2.0) ##### Features - [`641eb91`](https://togithub.com/mdx-js/mdx/commit/641eb917) Add support JSX development runtime by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2045](https://togithub.com/mdx-js/mdx/pull/2045) ##### Patches - [`3e0ab23`](https://togithub.com/mdx-js/mdx/commit/3e0ab236) Fix `@mdx-js/node-loader` from patching all runtimes ##### Docs - [`4a1415d`](https://togithub.com/mdx-js/mdx/commit/4a1415d2) Add note about use with `vite-plugin-react` - [`38c2d46`](https://togithub.com/mdx-js/mdx/commit/38c2d46a) Add note about `rollup@2` in Vite by [@​ryuujo1573](https://togithub.com/ryuujo1573) in [https://github.com/mdx-js/mdx/pull/2180](https://togithub.com/mdx-js/mdx/pull/2180) - [`caac5df`](https://togithub.com/mdx-js/mdx/commit/caac5df4) Update docs for `solid-js` supporting JSX - [`3a50cc3`](https://togithub.com/mdx-js/mdx/commit/3a50cc35) Add Solid to JSX section in Getting Started guide by [@​Djunnni](https://togithub.com/Djunnni) in [https://github.com/mdx-js/mdx/pull/2159](https://togithub.com/mdx-js/mdx/pull/2159) - [`1c83612`](https://togithub.com/mdx-js/mdx/commit/1c836126) Fix docs on types - [`2635caf`](https://togithub.com/mdx-js/mdx/commit/2635caf9) Replace deprecated Intellij plugin in docs by [@​slorber](https://togithub.com/slorber) in [https://github.com/mdx-js/mdx/pull/2178](https://togithub.com/mdx-js/mdx/pull/2178) **Full Changelog**: mdx-js/mdx@2.1.5...2.2.0 ### [`v2.1.5`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.5) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.4...2.1.5) - [`90fa493`](https://togithub.com/mdx-js/mdx/commit/90fa4935) Fix bug with (injected) custom elements and layouts **Full Changelog**: mdx-js/mdx@2.1.4...2.1.5 ### [`v2.1.4`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.4) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.3...2.1.4) ##### Patches - [`9d2aa80`](https://togithub.com/mdx-js/mdx/commit/9d2aa80b) Add file, positional info to crashes in webpack loader by [@​Twipped](https://togithub.com/Twipped) in [https://github.com/mdx-js/mdx/pull/2124](https://togithub.com/mdx-js/mdx/pull/2124) - [`478c78b`](https://togithub.com/mdx-js/mdx/commit/478c78b7) Fix support for Node loaders ##### Docs - [`56d7066`](https://togithub.com/mdx-js/mdx/commit/56d70660) Add Astro to site generator docs by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2118](https://togithub.com/mdx-js/mdx/pull/2118) - [`996771a`](https://togithub.com/mdx-js/mdx/commit/996771ae) Add missing `import` to site example by [@​elpddev](https://togithub.com/elpddev) in [https://github.com/mdx-js/mdx/pull/2115](https://togithub.com/mdx-js/mdx/pull/2115) **Full Changelog**: mdx-js/mdx@2.1.3...2.1.4 ### [`v2.1.3`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.3) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.2...2.1.3) ##### Core - [`9904838`](https://togithub.com/mdx-js/mdx/commit/9904838a) Fix rewriting of components for custom elements by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2101](https://togithub.com/mdx-js/mdx/pull/2101) ##### Docs - [`69a15b7`](https://togithub.com/mdx-js/mdx/commit/69a15b76) Add link to official `mdx-js/vscode-mdx` by [@​jasikpark](https://togithub.com/jasikpark) in [https://github.com/mdx-js/mdx/pull/2098](https://togithub.com/mdx-js/mdx/pull/2098) ##### Internal stuff that slightly improve stuff - [`529b96a`](https://togithub.com/mdx-js/mdx/commit/529b96aa) Replace `astring` with `estree-util-to-js` - [`7d8dc11`](https://togithub.com/mdx-js/mdx/commit/7d8dc11c) Add `id` field to esbuild messages - [`7f37b95`](https://togithub.com/mdx-js/mdx/commit/7f37b95b) Update `@types/estree-jsx` **Full Changelog**: mdx-js/mdx@2.1.2...2.1.3 ### [`v2.1.2`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.2) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.1...2.1.2) ##### Core - [`7bcd705`](https://togithub.com/mdx-js/mdx/commit/7bcd7059) Fix some performance by improving vdom diffing by [@​0phoff](https://togithub.com/0phoff) in [https://github.com/mdx-js/mdx/pull/2062](https://togithub.com/mdx-js/mdx/pull/2062) - [`f77c33f`](https://togithub.com/mdx-js/mdx/commit/f77c33f5) Fix support for `baseUrl` rewriting `import.meta.url` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2021](https://togithub.com/mdx-js/mdx/pull/2021) ##### Docs - [`3579aa3`](https://togithub.com/mdx-js/mdx/commit/3579aa38) Add use of tla in docs - [`366ddb4`](https://togithub.com/mdx-js/mdx/commit/366ddb4d) Update examples in readme - [`63fd208`](https://togithub.com/mdx-js/mdx/commit/63fd208d) Add `@next/mdx` to Next.js getting started guide by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2040](https://togithub.com/mdx-js/mdx/pull/2040) - [`7f9a5f4`](https://togithub.com/mdx-js/mdx/commit/7f9a5f4e) Add improved getting started for current CRA 5 integration by [@​userzimmermann](https://togithub.com/userzimmermann) in [https://github.com/mdx-js/mdx/pull/2010](https://togithub.com/mdx-js/mdx/pull/2010) - [`5fa82d8`](https://togithub.com/mdx-js/mdx/commit/5fa82d81) Add `recma-nextjs-static-props` to list of plugins by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2033](https://togithub.com/mdx-js/mdx/pull/2033) - [`3c51a43`](https://togithub.com/mdx-js/mdx/commit/3c51a434) Add `remark-mdx-math-enhanced` to list of plugins by [@​mattvague](https://togithub.com/mattvague) in [https://github.com/mdx-js/mdx/pull/2028](https://togithub.com/mdx-js/mdx/pull/2028) **Full Changelog**: mdx-js/mdx@2.1.1...2.1.2 ### [`v2.1.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.0...2.1.1) - [`e79fc2b`](https://togithub.com/mdx-js/mdx/commit/e79fc2be) [`0df684b`](https://togithub.com/mdx-js/mdx/commit/0df684bc) Fix to improve `_missingMdxReference` by [@​vlad-zhukov](https://togithub.com/vlad-zhukov) in [https://github.com/mdx-js/mdx/pull/1986](https://togithub.com/mdx-js/mdx/pull/1986), [https://github.com/mdx-js/mdx/pull/1988](https://togithub.com/mdx-js/mdx/pull/1988) **Full Changelog**: mdx-js/mdx@2.1.0...2.1.1 ### [`v2.1.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.0.0...2.1.0) ##### Core - [`aff6de4`](https://togithub.com/mdx-js/mdx/commit/aff6de4f) **minor** add support for passing options to `remark-rehype` by [@​stefanprobst](https://togithub.com/stefanprobst) in [https://github.com/mdx-js/mdx/pull/1935](https://togithub.com/mdx-js/mdx/pull/1935) - [`5d4355e`](https://togithub.com/mdx-js/mdx/commit/5d4355e4) **patch** replace `got` w/ `node-fetch` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/1978](https://togithub.com/mdx-js/mdx/pull/1978) - [`656a4ae`](https://togithub.com/mdx-js/mdx/commit/656a4ae5) **patch** remove use of `URL` from `url` by [@​zfben](https://togithub.com/zfben) in [https://github.com/mdx-js/mdx/pull/1976](https://togithub.com/mdx-js/mdx/pull/1976) - [`3f739a3`](https://togithub.com/mdx-js/mdx/commit/3f739a34) **patch** add missing dependency by [@​bensmithett](https://togithub.com/bensmithett) in [https://github.com/mdx-js/mdx/pull/1936](https://togithub.com/mdx-js/mdx/pull/1936) ##### Site - [`2886021`](https://togithub.com/mdx-js/mdx/commit/28860214) [`71bc6ff`](https://togithub.com/mdx-js/mdx/commit/71bc6ff9) [`4b514e1`](https://togithub.com/mdx-js/mdx/commit/4b514e1a) Fix playground by [@​homumado](https://togithub.com/homumado) in [https://github.com/mdx-js/mdx/pull/1975](https://togithub.com/mdx-js/mdx/pull/1975) and [https://github.com/mdx-js/mdx/pull/1931](https://togithub.com/mdx-js/mdx/pull/1931), and by [@​VitorLuizC](https://togithub.com/VitorLuizC) in [https://github.com/mdx-js/mdx/pull/1928](https://togithub.com/mdx-js/mdx/pull/1928) ##### Docs - [`e6f6bc8`](https://togithub.com/mdx-js/mdx/commit/e6f6bc85) Fix to improve example by [@​dawidjaniga](https://togithub.com/dawidjaniga) in [https://github.com/mdx-js/mdx/pull/1961](https://togithub.com/mdx-js/mdx/pull/1961) - [`e527ac7`](https://togithub.com/mdx-js/mdx/commit/e527ac75) Fix typo by [@​jbesomi](https://togithub.com/jbesomi) in [https://github.com/mdx-js/mdx/pull/1949](https://togithub.com/mdx-js/mdx/pull/1949) **New Contributors**: Thanks [@​VitorLuizC](https://togithub.com/VitorLuizC), [@​homumado](https://togithub.com/homumado), [@​bensmithett](https://togithub.com/bensmithett), [@​stefanprobst](https://togithub.com/stefanprobst), [@​jbesomi](https://togithub.com/jbesomi), [@​dawidjaniga](https://togithub.com/dawidjaniga), [@​zfben](https://togithub.com/zfben) **Full Changelog**: mdx-js/mdx@2.0.0...2.1.0 ### [`v2.0.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.0.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/v1.6.22...2.0.0) Welcome to MDX 2! See the of the website for everything: - MDX 2: https://mdxjs.com/blog/v2/ - Migrating: https://mdxjs.com/migrating/v2/ <details><summary>Changelog since last RC</summary> ##### `@mdx-js/mdx` - [`4a48f1f`](https://togithub.com/mdx-js/mdx/commit/4a48f1f4) Fix custom elements ([#​1911](https://togithub.com/mdx-js/mdx/issues/1911)) ##### `@mdx-js/react` - [`9ca9d40`](https://togithub.com/mdx-js/mdx/commit/9ca9d404) Fix unnecessary top-level context changes ([#​1924](https://togithub.com/mdx-js/mdx/issues/1924)) ##### `@mdx-js/loader` - [`e0b697a`](https://togithub.com/mdx-js/mdx/commit/e0b697ab) [`9d5501b`](https://togithub.com/mdx-js/mdx/commit/9d5501b2) Add improved webpack cache ([#​1912](https://togithub.com/mdx-js/mdx/issues/1912), [#​1916](https://togithub.com/mdx-js/mdx/issues/1916)) ##### `@mdx-js/esbuild` - [`5c61f57`](https://togithub.com/mdx-js/mdx/commit/5c61f577) Fix resolve base in esbuild loader ([#​1854](https://togithub.com/mdx-js/mdx/issues/1854)) ##### `remark-mdx` - [`a5daaad`](https://togithub.com/mdx-js/mdx/commit/a5daaad6) Update `mdast-util-mdx` ([#​1925](https://togithub.com/mdx-js/mdx/issues/1925)) </details> #### New Contributors Thanks [@​redallen](https://togithub.com/redallen), [@​lonyele](https://togithub.com/lonyele), [@​PaulieScanlon](https://togithub.com/PaulieScanlon), [@​pd4d10](https://togithub.com/pd4d10), [@​Gowee](https://togithub.com/Gowee), [@​mskelton](https://togithub.com/mskelton), [@​ihupoo](https://togithub.com/ihupoo), [@​remcohaszing](https://togithub.com/remcohaszing), [@​loreanvictor](https://togithub.com/loreanvictor), [@​ChrisChinchilla](https://togithub.com/ChrisChinchilla), [@​glitteringkatie](https://togithub.com/glitteringkatie), [@​mvasilkov](https://togithub.com/mvasilkov), [@​jablko](https://togithub.com/jablko), [@​michaeloliverx](https://togithub.com/michaeloliverx), [@​yordis](https://togithub.com/yordis), [@​rodrez](https://togithub.com/rodrez), [@​imballinst](https://togithub.com/imballinst), [@​gaearon](https://togithub.com/gaearon). **Full Changelog**: mdx-js/mdx@v1.6.3...2.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/defenseunicorns/zarf). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMTEuMSIsInVwZGF0ZWRJblZlciI6IjM0LjExMS4xIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This needs to increment the minimum version of
until I was able to track down this dependency in my lockfile! |
The version range The policy in the unified / mdx ecosystem is to use version ranges of the form |
The JSX dev runtime exposes more debugging information to users. For example, React exposes positional information through React Devtools.
Although #2035 started off as an issue to support the
__source
prop, I have refrained from actually supporting the__source
prop, as it’s specific to React. The automatic dev runtime supports this information without patching props.Closes #2035