mirror of
https://github.com/pnpm/pnpm.git
synced 2026-04-03 06:51:53 -04:00
14 lines
272 B
TypeScript
14 lines
272 B
TypeScript
import path from 'path'
|
|
|
|
export function getToolDirPath (
|
|
opts: {
|
|
pnpmHomeDir: string
|
|
tool: {
|
|
name: string
|
|
version: string
|
|
}
|
|
}
|
|
): string {
|
|
return path.join(opts.pnpmHomeDir, '.tools', opts.tool.name.replaceAll('/', '+'), opts.tool.version)
|
|
}
|