-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Description
I have two projects successively upgraded from previous meteor releases, in which meteor list shows new versions for certain packages. When I issue the meteor update (with or without optional --packages-only) it tells me it updates the outdated packages, but never does.
Then new package versions get downloaded to $HOME/.meteor/packages (with their directory names changed with all : replaced with _ [when did that happen]) but the meteor list command keeps insisting there are new versions
meteor update --packages-only
Changes to your project's package version selections from updating package versions:
aldeed:autoform upgraded from 4.2.1 to 4.2.2
aldeed:simple-schema upgraded from 1.2.0 to 1.3.0
momentjs:moment added, version 2.8.4
mrt:moment upgraded from 2.6.0 to 2.8.1
natestrauser:font-awesome upgraded from 4.2.0 to 4.2.0_1
meteor list | grep '*'
aldeed:autoform 4.2.1* Easily create forms with automatic ...
aldeed:simple-schema 1.2.0* A simple schema validation object w...
mrt:moment 2.6.0* Moment.js, a JavaScript date librar...
natestrauser:font-awesome 4.2.0* Latest version Font-Awesome loaded ...
* New versions of these packages are available! Run 'meteor update' to try to
checking the .meteor/versions file it indeed lists those packages with the old version, even though $HOME/.meteor/packages has the newer versions downloaded.
How can I fix this? I tried to create a reproduction with a newly created project but can not reproduce this. There has to be a file from previous versions of meteor that confuses the new/latest meteor version when it comes to package versions ...