mirror of
https://github.com/pnpm/pnpm.git
synced 2026-06-30 19:05:23 -04:00
13 lines
425 B
TypeScript
13 lines
425 B
TypeScript
import * as configCmd from './config'
|
|
import { type ConfigCommandOptions } from './ConfigCommandOptions'
|
|
|
|
export const rcOptionsTypes = configCmd.rcOptionsTypes
|
|
export const cliOptionsTypes = configCmd.cliOptionsTypes
|
|
export const help = configCmd.help
|
|
|
|
export const commandNames = ['set']
|
|
|
|
export async function handler (opts: ConfigCommandOptions, params: string[]) {
|
|
return configCmd.handler(opts, ['set', ...params])
|
|
}
|