0

I'm trying to update all my jspm dependencies to the newest version, the only "solution" I found is "jspm update", but this only installs the version, which is defined in the package.json Isn't there anyway to automatically update the packages to the really newest version and settings the new version number in the package.json?

Cedric

Ced
  • 1,301
  • 11
  • 30
  • I'm confused. The jspm dependencies should be installed in the jspm config.js and not the packages.json. Do you want to update even to the lastest major versions or just minor? – brass monkey Nov 23 '15 at 09:26

1 Answers1

1

Jspm uses semver notation for updating the packages. Please make sure you are using the notation correctly.

For instance, if you run Jspm update with a package@1.0.2 package definition on the packages.json, the package will not be updated to a new version because the version is locked for 1.0.2.

Ricardo Brandão
  • 1,050
  • 7
  • 15