github pnpm/pnpm v0.37.0
v0.37.0 - pnpm prune

latest releases: v9.0.6, v9.0.5, v9.0.4...
7 years ago

Features

Bug Fixes

Breaking Changes

The structure of the store.json has been changed.

Previously the dependencies property contained just a list of dependency IDs. E.g.:

{
  "dependencies": {
    "math": [
      "sum@1.0.0",
      "@zkochan+max@2.1.0"
    ]
  }
}

With this structure it was hard to link the dependencies to their IDs. The new structure uses a map which links the dependency to its ID:

{
  "dependencies": {
    "map": {
      "sum": "sum@1.0.0",
      "@zkochan/max": "@zkochan+max@2.1.0"
    }
  }
}

Unfortunately the stores created by older version of pnpm are not usable after this breaking change. They have to be removed before using the new version of pnpm.

Don't miss a new pnpm release

NewReleases is sending notifications on new releases.