mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-08 01:07:31 -05:00
26 lines
774 B
TypeScript
26 lines
774 B
TypeScript
import { docsUrl } from '@pnpm/cli-utils'
|
|
import { PnpmError } from '@pnpm/error'
|
|
import renderHelp from 'render-help'
|
|
|
|
export const rcOptionsTypes = (): Record<string, unknown> => ({})
|
|
|
|
export const cliOptionsTypes = (): Record<string, unknown> => ({})
|
|
|
|
export const shorthands: Record<string, string> = {}
|
|
|
|
export const commandNames = ['ci', 'clean-install', 'ic', 'install-clean']
|
|
|
|
export function help (): string {
|
|
return renderHelp({
|
|
aliases: ['clean-install', 'ic', 'install-clean'],
|
|
description: 'Clean install a project',
|
|
descriptionLists: [],
|
|
url: docsUrl('ci'),
|
|
usages: ['pnpm ci'],
|
|
})
|
|
}
|
|
|
|
export async function handler (opts: unknown): Promise<never> {
|
|
throw new PnpmError('CI_NOT_IMPLEMENTED', 'The ci command is not implemented yet')
|
|
}
|