syncpack
Version:
Consistent dependency versions in large JavaScript Monorepos
11 lines (10 loc) • 636 B
TypeScript
export declare const option: {
readonly config: readonly ["-c, --config <path>", "path to a syncpack config file"];
readonly filter: readonly ["-f, --filter [pattern]", string];
readonly indent: readonly ["-i, --indent [value]", `override indentation. defaults to "${string}"`];
readonly source: readonly ["-s, --source [pattern]", "glob pattern for package.json files to read from", typeof collect, string[]];
readonly specs: readonly ["-S, --specs <names>", string];
readonly types: readonly ["-t, --types <names>", string];
};
declare function collect(value: string, previous: string[]): string[];
export {};