Files
pnpm/test/install
Zoltan Kochan fed56040a8 feat: new hook that is called after the resolution stage
The afterAllResolved hook is called with a context argument when
all dependencies are resolved. The context object contain a log
function.

A sample of a `pnpmfile.js` that declares afterAllResolved:

```js
module.exports = {
  hooks: {
    afterAllResolved (shr, context) {
      context.log('Resolution done')
      return shr
    }
  }
}
```

close #1088
2018-04-20 01:09:12 +03:00
..
2018-03-08 21:20:59 +02:00
2018-01-13 19:02:24 +02:00