mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-31 05:22:00 -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)
|
|
}
|