-
-
Notifications
You must be signed in to change notification settings - Fork 150
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
Failed to import - @mdx-js/mdx #142
Comments
from @amatiasq:
|
@talentlessguy Isn't this a different issue? I know they refer to the same module bit the errors que got are different so solving one doesn't necessarily mean the other will be fixed too. Analysis copied from #167: After analyzing the issue I found out it is because import template from "@babel/template";
// below at line 21...
const buildPropertyMethodAssignmentWrapper = template(`... `) Which is transpiled as import ___babel_template$ from '/v53/@babel/[email protected]/deno/template.js';
// ...
var N = ___babel_template$;
// ...
j = (0, N.default)(`...`) So you can see we're importing the default export but then again we try to access it's default property for some reason. |
@amatiasq done, thx |
still getting on v57:
|
it works now on v78 |
Failing module
Error message
After running
deno run
I get this:Additional info
Analysis
After analyzing the issue I found out it is because
helper-function-name.js
starts with this import:Which is transpiled as
So you can see we're importing the default export but then again we try to access it's default property for some reason.
The text was updated successfully, but these errors were encountered: