How do I lock a version of a package? (FlowLayout in my case)

So I noticed that when I run meteor update it updates FlowLayout to version 1.4.2 and then parts of my app stop working. I would like to be able to lock FlowLayout to a version that I am confident works correctly, but still be able to run meteor update for other needs. Is this possible?

You should be able to append the version number to the package name in .meteor/packages with the ‘@’ symbol, and it should stay at the version no matter what.

meteorhacks:flow-layout@1.4.1

1 Like

thanks, that seems to have done the trick.

1 Like

It should be with @=.

meteorhacks:flow-layout@=1.4.1
2 Likes