fraction.js imported from mathjs causes error
it seems that the mathJS version you import 9.4.4 does not specify a specific version of fraction.JS and this is causing an error with fraction.js
can you please reference mathJS version 11.11.0
this whole issue with fraction.JS caused this to break
thanks
Same issue here. Any Updates ?
Hi, I found the same problem, I solved it by overwriting the danfojs dependencies.
The problem comes from the mathjs library, which has the caret in the fraction.js dependency.
How do I override nested NPM dependency versions
Add in package.json
"overrides": {
"danfojs": {
"fraction.js": "4.2.0"
}
}
And reinstall node_modules
A big thank you @nonodev96! you probably just saved me a day of torture.