mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-25 02:21:52 -04:00
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