-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
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
RangeError: Maximum call stack size exceeded when using Vue 2.7.7, works with 2.7.6 #12683
Comments
Hello, the cause is in the type fix: #12666.
I am experiencing the same error when trying to generate the TypeScript coverage report. |
I'm facing the same problem. |
This still is happening in Vue 2.7.10 for me. Can somebody else confirm? |
The issue occurs also for me with vue 2.7.10. |
Should this be closed? Still happening on 2.7.13 |
The reason behind the error was @types/vuelidate": "^0.7.4". After removing it from dependencies the error was gone. |
We had exactly the same version of vuelidate types and I can confirm that removing it from monorepo solved the problem. Alternatively, if you need to keep @vuelidate types, there is an option with adding a patch to the package. #12750 (comment) |
I'm having this error with no |
I have the same issue without using |
Hello, i've been searching for an issue in our project. I found that we had some Class components with |
Version
2.7.7
Reproduction link
github.com
Steps to reproduce
Clone the repository
Switching to the Working branch which is using vue 2.7.6
git switch vue276
Clearing node_modules, install node_modules and clearing jest cache
./clear-npm.sh
npm run serve
no problemnpm run test:unit
also no problemFor testing with vue 2.7.7
git switch vue277
Clearing node_modules, install node_modules and clearing jest cache
./clear-npm.sh
npm run serve
see errorsnpm run test:unit
see errorsWhat is expected?
Serving the Application, running the tests. Behave like 2.7.6 ;)
What is actually happening?
With Vue 2.7.7 I get an error like this on
npm run serve
on
npm run test:unit
this happensI disabled webpack cache in the repro, also clearing jest cache.
This is the simplest reproduction I could create. In the real application
npm run serve
does not even startthe application, it stops at 51% with a call stack size exceeded message. But the Unit Test are running.
In the vue276 branch I added the vue-template-compiler package in version 2.7.6 to force the version.
The text was updated successfully, but these errors were encountered: