You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we have a skipInstalledCheck flag that manipulates whether we force package installation or check whether it is installed and skip if it is. We tried some smarter approaches like using semver to decide whether we have to change/update the version of package we want, but it didn't work at first.
Original discussion: #22 (comment)_
Currently we have a
skipInstalledCheck
flag that manipulates whether we force package installation or check whether it is installed and skip if it is. We tried some smarter approaches like usingsemver
to decide whether we have to change/update the version of package we want, but it didn't work at first.Still it might be possible to implement but it needs some more consideration. Perhaps we could use
minVersion()
orsubset()
(https://github.com/npm/node-semver/blob/main/ranges/subset.js) fromsemver
package.The text was updated successfully, but these errors were encountered: