-
-
Notifications
You must be signed in to change notification settings - Fork 135
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
Getting an error saying f is not a constructor #1725
Comments
This may be related to the Can you try the following import? import { Text } from 'html-react-parser';
console.log(Text); |
Hi @remarkablemark , Thanks for responding so quickly. The output is |
I wonder if this could be a rm -rf node_modules package-lock.json yarn.lock
npm i |
Hi @remarkablemark we have tried to clean up the node modules and re-install all the dependencies multiple times but this did not help fix the issue. |
Gotcha then I'll need your help in creating a small reproducible example and sharing the code with me. Feel free to use something like StackBlitz. |
Thanks @remarkablemark ! I have tried to update that project but it seems there is a known issue in stackblitz: stackblitz/core#1855 Basiically, I just replaced vite with Parcel 2 and the npm scripts and kept other code. |
I created a new small project locally and I found this error log.
|
Once you create the project with your error, please commit it and share the public GitHub repo with me so I can take a look. |
Expected Behavior
We have recently upgraded our build tool Parcel to v2.13.3, and since then we started having an error about
f is not a constructor
.This is how we use the parser:
import HTMLReactParser from "html-react-parser";
It's expected no errors should occur.
We are using 3.0.16, but the error still occurs after we upgrade to 5.2.2. However, the error message is a bit more readable after the upgrade - Text is not a constructor.
Actual Behavior
Getting the error as described above.
Steps to Reproduce
Not sure if the issue is related to Parcel 2.13.x, but this is the only thing we did to trigger the issue.
Environment
The text was updated successfully, but these errors were encountered: