mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-27 00:08:53 -05:00
16 lines
444 B
TypeScript
16 lines
444 B
TypeScript
import pnpmManifest from '@pnpm/cli-meta'
|
|
import getConfig from './getConfig'
|
|
|
|
export { getConfig }
|
|
|
|
export * from './packageIsInstallable'
|
|
export * from './readDepNameCompletions'
|
|
export * from './readProjectManifest'
|
|
export * from './recursiveSummary'
|
|
export * from './style'
|
|
|
|
export const docsUrl = (cmd: string) => {
|
|
const [pnpmMajorVersion] = pnpmManifest.version.split('.')
|
|
return `https://pnpm.io/${pnpmMajorVersion}.x/cli/${cmd}`
|
|
}
|