mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-24 18:11:39 -04:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
module.exports = {
|
|
hooks: {
|
|
readPackage (pkg) {
|
|
if (!pkg.dependencies) return pkg
|
|
if (pkg.dependencies['@commitlint/ensure']) {
|
|
pkg.dependencies['@commitlint/ensure'] = '7.1.2'
|
|
}
|
|
return pkg
|
|
},
|
|
},
|
|
}
|