-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
Move stylelint-config-recommended to peerDeps #68
Comments
I don't see why that would be helpful. Since I have confirmed that stylelint v16 can be used without changing the source code of this package, I think it is a good not to make any breaking changes. |
existing old projects who have to use node 14 or 16 can't use stylelint 16 as it requires node >= 18. |
If you are using older Node.js, I think you should just use Stylelint v15 or earlier. Why install Stylelint v16? This incompatibility is also indicated in the documentation. |
Hmm. Perhaps |
I guess that could work. Don't forget to update readme to tell users to install the proper version of |
Hi @ota-meshi, any updates on this? |
package.json {
"dependencies": {
"stylelint-config-recommended-vue": "~1.4.0"
},
"resolutions": {
"stylelint-config-recommended": "^13.0.0"
}
} |
stylelint 16 dropped support for node 14 and 16 so it could be helpful to make a version that uses stylelint 15 and another version for stylelint >=16.
currently it's possible to use overrides for npm and resolutions for yarn as a workaround to keep versions that supports node 14 & 16 but a separate version of this repo would be more helpful.
The text was updated successfully, but these errors were encountered: