-
Notifications
You must be signed in to change notification settings - Fork 20
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
Node 16 requirement #1
Comments
I set it to 16 simply because it's a long-term stable (LTS). |
and node |
"peerDependencies": {
"vue": "^2.7.14 || ^3.2.47"
}, also this forces user update vue to up to this version. Minor/feature lock is understandable, but you do not want force patch version. Just lock it at version that your project need for running please. Sometimes it can be really diffucult to meet requirements because of this. Same thing applies to locked version of node 18. At the time I was writing this issue, your package run perfectly fine with node 14. No every project can be upgraded to such version. Just lock it on minimal version possible please. |
I understand about the version of node. Regarding However, since I think that it will work with Vue 3.2 or later, a minor version may not be necessary there. |
After much thought, I came to the conclusion that the dependency version should be determined in the base Vue and not defined in the component. |
Is node 16 really neccessary?
The text was updated successfully, but these errors were encountered: