mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-24 10:01:48 -04:00
13 lines
210 B
JavaScript
13 lines
210 B
JavaScript
module.exports = {
|
|
hooks: {
|
|
readPackage (pkg) {
|
|
switch (pkg.name) {
|
|
case '@babel/parser':
|
|
pkg.peerDependencies['@babel/types'] = '*'
|
|
break
|
|
}
|
|
return pkg
|
|
}
|
|
}
|
|
}
|