mirror of
https://github.com/pnpm/pnpm.git
synced 2026-04-27 18:46:18 -04:00
9 lines
125 B
JavaScript
9 lines
125 B
JavaScript
module.exports = {
|
|
hooks: {readPackage}
|
|
}
|
|
|
|
function readPackage(pkg) {
|
|
pkg.dependencies = '@oclif/errors'
|
|
return pkg
|
|
}
|