Adding an older package version does not seem to work

I added Autoform 5.2.0, but it is too buggy so I want to use its older 5.1.2 version again.

Running meteor add aldeed:autoform@5.1.2 does change the packages file, but my versions file keeps going back to 5.2.0 (I still see the same bugs, so that means my project uses 5.2.0). What can I do to change this?

Thanks!

An equal sign after the @ should do the trick. So changing/adding this to .meteor/packages works:

aldeed:autoform@=5.1.2
1 Like

that did the trick! Thanks.