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:
- after using
mint bootstrap which installs the specified versions of packages
- running
mint run swiftlint tries to use the newest version of the package instead of the one specified in the Mintfile.
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.
- We can update the locked version by calling something like
mint update.
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
Mintfilebut it does not work as expected.Mintfile example:
Current state:
mint bootstrapwhich installs the specified versions of packagesmint run swiftlinttries to use the newest version of the package instead of the one specified in theMintfile.Expected:
mint bootstrapinstalls the version specified in a lock-file (or creates one if it doesn't exist yet).mint run swiftlintruns the version specified in the lock-file.mint update.