UNPKG

@code-pushup/cli

Version:

A CLI to run all kinds of code quality measurements to align your team with company goals

7 lines (6 loc) 269 B
import type { LogOptions } from 'simple-git'; import type { HistoryOnlyOptions } from '@code-pushup/core'; export type HistoryCliOptions = { targetBranch?: string; onlySemverTags?: boolean; } & Pick<LogOptions, 'maxCount' | 'from' | 'to'> & HistoryOnlyOptions;