mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-13 09:28:35 -05:00
246 lines
7.8 KiB
TypeScript
246 lines
7.8 KiB
TypeScript
import { PnpmError } from '@pnpm/error'
|
|
import { findWorkspaceDir } from '@pnpm/find-workspace-dir'
|
|
import nopt from '@pnpm/nopt'
|
|
import didYouMean, { ReturnTypeEnums } from 'didyoumean2'
|
|
|
|
const RECURSIVE_CMDS = new Set(['recursive', 'multi', 'm'])
|
|
|
|
export interface ParsedCliArgs {
|
|
argv: {
|
|
remain: string[]
|
|
cooked: string[]
|
|
original: string[]
|
|
}
|
|
params: string[]
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
options: Record<string, any>
|
|
cmd: string | null
|
|
unknownOptions: Map<string, string[]>
|
|
fallbackCommandUsed: boolean
|
|
workspaceDir: string | undefined
|
|
}
|
|
|
|
export async function parseCliArgs (
|
|
opts: {
|
|
escapeArgs?: string[]
|
|
fallbackCommand?: string
|
|
getCommandLongName: (commandName: string) => string | null
|
|
getTypesByCommandName: (commandName: string) => object
|
|
renamedOptions?: Record<string, string>
|
|
shorthandsByCommandName: Record<string, Record<string, string | string[]>>
|
|
universalOptionsTypes: Record<string, unknown>
|
|
universalShorthands: Record<string, string | string[]>
|
|
},
|
|
inputArgv: string[]
|
|
): Promise<ParsedCliArgs> {
|
|
const noptExploratoryResults = nopt(
|
|
{
|
|
filter: [String],
|
|
help: Boolean,
|
|
recursive: Boolean,
|
|
...opts.universalOptionsTypes,
|
|
...opts.getTypesByCommandName('add'),
|
|
...opts.getTypesByCommandName('install'),
|
|
},
|
|
{
|
|
r: '--recursive',
|
|
...opts.universalShorthands,
|
|
},
|
|
inputArgv,
|
|
0,
|
|
{ escapeArgs: opts.escapeArgs }
|
|
)
|
|
|
|
const recursiveCommandUsed = RECURSIVE_CMDS.has(noptExploratoryResults.argv.remain[0])
|
|
let commandName = getCommandName(noptExploratoryResults.argv.remain)
|
|
let cmd = commandName ? opts.getCommandLongName(commandName) : null
|
|
const fallbackCommandUsed = Boolean(commandName && !cmd && opts.fallbackCommand)
|
|
if (fallbackCommandUsed) {
|
|
cmd = opts.fallbackCommand!
|
|
commandName = opts.fallbackCommand!
|
|
inputArgv.unshift(opts.fallbackCommand!)
|
|
// The run command has special casing for --help and is handled further below.
|
|
} else if (cmd !== 'run') {
|
|
if (noptExploratoryResults['help']) {
|
|
return {
|
|
...getParsedArgsForHelp(),
|
|
workspaceDir: await getWorkspaceDir(noptExploratoryResults),
|
|
}
|
|
}
|
|
if (noptExploratoryResults['version'] || noptExploratoryResults['v']) {
|
|
return {
|
|
argv: noptExploratoryResults.argv,
|
|
cmd: null,
|
|
options: {
|
|
version: true,
|
|
},
|
|
params: noptExploratoryResults.argv.remain,
|
|
unknownOptions: new Map(),
|
|
fallbackCommandUsed: false,
|
|
workspaceDir: await getWorkspaceDir(noptExploratoryResults),
|
|
}
|
|
}
|
|
}
|
|
|
|
function getParsedArgsForHelp (): Omit<ParsedCliArgs, 'workspaceDir'> {
|
|
return {
|
|
argv: noptExploratoryResults.argv,
|
|
cmd: 'help',
|
|
options: {},
|
|
params: noptExploratoryResults.argv.remain,
|
|
unknownOptions: new Map(),
|
|
fallbackCommandUsed: false,
|
|
}
|
|
}
|
|
|
|
const types = {
|
|
...opts.universalOptionsTypes,
|
|
...opts.getTypesByCommandName(commandName),
|
|
} as any // eslint-disable-line @typescript-eslint/no-explicit-any
|
|
|
|
function getCommandName (args: string[]): string {
|
|
if (recursiveCommandUsed) {
|
|
args = args.slice(1)
|
|
}
|
|
if (opts.getCommandLongName(args[0]) !== 'install' || args.length === 1) {
|
|
return args[0]
|
|
}
|
|
return 'add'
|
|
}
|
|
|
|
function getEscapeArgsWithSpecialCaseForRun (): string[] | undefined {
|
|
if (cmd !== 'run') {
|
|
return opts.escapeArgs
|
|
}
|
|
|
|
// We'd like everything after the run script's name to be passed to the
|
|
// script's argv itself. For example, "pnpm run echo --test" should pass
|
|
// "--test" to the "echo" script. This requires determining the script's
|
|
// name and declaring it as the "escape arg".
|
|
//
|
|
// The name of the run script is normally the second argument (ex: pnpm
|
|
// run foo), but can be pushed back by recursive commands (ex: pnpm
|
|
// recursive run foo) or becomes the first argument when the fallback
|
|
// command (ex: pnpm foo) is set to 'run'.
|
|
const indexOfRunScriptName = 1 +
|
|
(recursiveCommandUsed ? 1 : 0) +
|
|
(fallbackCommandUsed && opts.fallbackCommand === 'run' ? -1 : 0)
|
|
return [noptExploratoryResults.argv.remain[indexOfRunScriptName]]
|
|
}
|
|
|
|
const { argv, ...options } = nopt(
|
|
{
|
|
recursive: Boolean,
|
|
...types,
|
|
},
|
|
{
|
|
...opts.universalShorthands,
|
|
...opts.shorthandsByCommandName[commandName],
|
|
},
|
|
inputArgv,
|
|
0,
|
|
{ escapeArgs: getEscapeArgsWithSpecialCaseForRun() }
|
|
)
|
|
const workspaceDir = await getWorkspaceDir(options)
|
|
|
|
// For the run command, it's not clear whether --help should be passed to the
|
|
// underlying script or invoke pnpm's help text until an additional nopt call.
|
|
if (cmd === 'run' && options['help']) {
|
|
return {
|
|
...getParsedArgsForHelp(),
|
|
workspaceDir,
|
|
}
|
|
}
|
|
|
|
if (opts.renamedOptions != null) {
|
|
for (const [cliOption, optionValue] of Object.entries(options)) {
|
|
if (opts.renamedOptions[cliOption]) {
|
|
options[opts.renamedOptions[cliOption]] = optionValue
|
|
delete options[cliOption]
|
|
}
|
|
}
|
|
}
|
|
|
|
const params = argv.remain.slice(1)
|
|
|
|
if (options['recursive'] !== true && (options['filter'] || options['filter-prod'] || recursiveCommandUsed)) {
|
|
options['recursive'] = true
|
|
const subCmd: string | null = argv.remain[1] && opts.getCommandLongName(argv.remain[1])
|
|
if (subCmd && recursiveCommandUsed) {
|
|
params.shift()
|
|
argv.remain.shift()
|
|
cmd = subCmd
|
|
}
|
|
}
|
|
if (options['workspace-root']) {
|
|
if (options['global']) {
|
|
throw new PnpmError('OPTIONS_CONFLICT', '--workspace-root may not be used with --global')
|
|
}
|
|
if (!workspaceDir) {
|
|
throw new PnpmError('NOT_IN_WORKSPACE', '--workspace-root may only be used inside a workspace')
|
|
}
|
|
options['dir'] = workspaceDir
|
|
}
|
|
|
|
if (cmd === 'install' && params.length > 0) {
|
|
cmd = 'add'
|
|
} else if (!cmd && options['recursive']) {
|
|
cmd = 'recursive'
|
|
}
|
|
|
|
const knownOptions = new Set(Object.keys(types))
|
|
return {
|
|
argv,
|
|
cmd,
|
|
params,
|
|
workspaceDir,
|
|
fallbackCommandUsed,
|
|
...normalizeOptions(options, knownOptions),
|
|
}
|
|
}
|
|
|
|
const CUSTOM_OPTION_PREFIX = 'config.'
|
|
|
|
interface NormalizeOptionsResult {
|
|
options: Record<string, unknown>
|
|
unknownOptions: Map<string, string[]>
|
|
}
|
|
|
|
function normalizeOptions (options: Record<string, unknown>, knownOptions: Set<string>): NormalizeOptionsResult {
|
|
const standardOptionNames = []
|
|
const normalizedOptions: Record<string, unknown> = {}
|
|
for (const [optionName, optionValue] of Object.entries(options)) {
|
|
if (optionName.startsWith(CUSTOM_OPTION_PREFIX)) {
|
|
normalizedOptions[optionName.substring(CUSTOM_OPTION_PREFIX.length)] = optionValue
|
|
continue
|
|
}
|
|
normalizedOptions[optionName] = optionValue
|
|
standardOptionNames.push(optionName)
|
|
}
|
|
const unknownOptions = getUnknownOptions(standardOptionNames, knownOptions)
|
|
return { options: normalizedOptions, unknownOptions }
|
|
}
|
|
|
|
function getUnknownOptions (usedOptions: string[], knownOptions: Set<string>): Map<string, string[]> {
|
|
const unknownOptions = new Map<string, string[]>()
|
|
const closestMatches = getClosestOptionMatches.bind(null, Array.from(knownOptions))
|
|
for (const usedOption of usedOptions) {
|
|
if (knownOptions.has(usedOption) || usedOption.startsWith('//')) continue
|
|
|
|
unknownOptions.set(usedOption, closestMatches(usedOption))
|
|
}
|
|
return unknownOptions
|
|
}
|
|
|
|
function getClosestOptionMatches (knownOptions: string[], option: string): string[] {
|
|
return didYouMean(option, knownOptions, {
|
|
returnType: ReturnTypeEnums.ALL_CLOSEST_MATCHES,
|
|
})
|
|
}
|
|
|
|
async function getWorkspaceDir (parsedOpts: Record<string, unknown>): Promise<string | undefined> {
|
|
if (parsedOpts['global'] || parsedOpts['ignore-workspace']) return undefined
|
|
const dir = parsedOpts['dir'] ?? process.cwd()
|
|
return findWorkspaceDir(dir as string)
|
|
}
|