mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-25 02:21:52 -04:00
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import path = require('path')
|
|
|
|
export function pathToLocalPkg (pkgName: string) {
|
|
return path.join(__dirname, '..', 'packages', pkgName)
|
|
}
|
|
|
|
export function local (pkgName: string) {
|
|
return `file:${pathToLocalPkg(pkgName)}`
|
|
}
|