mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-10 17:04:07 -04:00
11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
module.exports = {
|
|
hooks: {
|
|
readPackage (pkg) {
|
|
if (typeof pkg.repository === 'string' && pkg.repository.startsWith('https://github.com/pnpm/pnpm/')) {
|
|
pkg.devDependencies[pkg.name] = 'link:'
|
|
}
|
|
return pkg
|
|
}
|
|
}
|
|
}
|