-
Notifications
You must be signed in to change notification settings - Fork 123
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
Enable locking versions in Mintfile.lock
or sth similar
#263
Comments
The Mintfile does not auto update so essentially IS a lockfile. The issue you're running into is that |
You're right. After providing Mintfile path expicitly, it all works now. What I'm still missing are features like |
IMHO Otherwise e.g. build scripts run successfully even though the wrong (latest) version of a tool was installed, because that's the fallback. |
Just adding my 2cents on this... Felt a little bit counter-intuitive to me, but I don't know if there are reasons behind this choice. |
Hi!
I have a feature request to be able to lock versions of mint packages in some file we could add to repository of a project. Currently, we tried using locking versions prepared for use in
Mintfile
but it does not work as expected.Mintfile example:
Current state:
mint bootstrap
which installs the specified versions of packagesmint run swiftlint
tries to use the newest version of the package instead of the one specified in theMintfile
.Expected:
mint bootstrap
installs the version specified in a lock-file (or creates one if it doesn't exist yet).mint run swiftlint
runs the version specified in the lock-file.mint update
.The text was updated successfully, but these errors were encountered: