UNPKG

@rnx-kit/align-deps

Version:

Manage dependencies within a repository and across many repositories

66 lines 1.57 kB
#!/usr/bin/env node import type { Args } from "./types"; export declare const description = "Manage dependencies within a repository and across many repositories"; export declare const cliOptions: { "diff-mode": { default: string; description: string; choices: string[]; }; "exclude-packages": { description: string; type: string; requiresArg: boolean; argsString: string; }; init: { description: string; choices: string[]; conflicts: string[]; }; loose: { default: boolean; description: string; type: string; }; "migrate-config": { default: boolean; description: string; type: string; }; "no-unmanaged": { default: boolean; description: string; type: string; }; presets: { description: string; type: string; requiresArg: boolean; argsString: string; }; requirements: { description: string; type: string; requiresArg: boolean; argsString: string; }; "set-version": { description: string; type: string; conflicts: string[]; argsString: string; }; verbose: { default: boolean; description: string; type: string; }; write: { default: boolean; description: string; type: string; }; }; export declare function cli({ packages, ...args }: Args): Promise<void>; //# sourceMappingURL=cli.d.ts.map