-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
React helmet async breaking in 1.44.3 #24342
Comments
In case it is relevant, here is my {
"deno.enable": true,
"deno.lint": true,
"deno.unstable": false,
"deno.config": "./deno.jsonc",
"deno.suggest.imports.hosts": {
"https://deno.land": true
},
"files.associations": {
"*.css": "tailwindcss"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "denoland.vscode-deno",
"editor.quickSuggestions": {
"strings": true
}
}
|
CC @nayeemrmn please take a look |
I just checked out the latest commit 67dcd6d for the other issue I linked to. I've verified that it doesn't resolve this issue. I used the following command: I'm going to stick with 1.44.2 until this issue is resolved. |
I reproduced this, it's because the |
Should I have that enabled if I am using npm packages via npm specifiers? Just asking because I'm not sure the reasons to or not to use the nodeModulesDir setting. |
You should use it if you find that a package you're using depends on |
Version: Deno 1.44.3
I have the following import.
Then when I try using the HelmetProvider as a react component, I get the following error.
In my deno.json, here is the most relevant imports entries.
I also tried changing the react version to be less specific (react@18) but that didn't resolve the issue.
And here are my compiler options.
I don't have the issue in 1.44.2 but do in 1.44.3 and 1.44.4. I found #24293 when looking through the commits for the release that broke my code. It sounded like it might be related since the issue is with JSX. But I don't have multiple deno.json files.
I tried checking out each commit using
deno upgrade --canary --version
, I found the commit that introduces this issue I'm having is the same one for that other issue I linked to. So they seem to be related.5dec3fd
The text was updated successfully, but these errors were encountered: