-
-
Notifications
You must be signed in to change notification settings - Fork 335
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
feat(dependency): support a possible installed v4 of less #1894
Conversation
Although this PR supports a higher major version of LESS, this will not help getting fomantic-ui installed with less 4.x installed, because the latest version of |
Related gulp-less support for less 4 at gulp-community/gulp-less#312 |
The upcoming gulp-less PR gulp-community/gulp-less#313 will support LESS 4 by removing the unmaintained accord dependency. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
I did not know package.json
supports multiple ranges support.
https://docs.npmjs.com/cli/v7/configuring-npm/package-json#dependencies
`range1 || range2~ Passes if either range1 or range2 are satisfied.
I merge this, so we and dependabot are prepared once gulp-less releases their next version |
Description
We fixed support for LESS 4 by #1819 , but the package.json retricts installation to 3.x if less 4.x is already installed by throwing "this version is not supported". Seems more and more people have LESS 4 installed now which breaks installation in some setup environments
I changed the dependency so every version >= 3.7 is supported now
Related
#1893