UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

84 lines 2.63 kB
import { type CommandModule } from 'yargs'; import { type OutputStyle, type RunManyOptions } from '../yargs-utils/shared-options'; import type { ReleaseGraph } from './utils/release-graph'; import type { VersionData } from './utils/shared'; export interface BaseNxReleaseArgs { verbose?: boolean; printConfig?: boolean | 'debug'; } export interface NxReleaseArgs extends BaseNxReleaseArgs { groups?: string[]; projects?: string[]; dryRun?: boolean; } interface GitOptions { stageChanges?: boolean; gitCommit?: boolean; gitCommitMessage?: string; gitCommitArgs?: string | string[]; gitTag?: boolean; gitTagMessage?: string; gitTagArgs?: string | string[]; gitPush?: boolean; gitPushArgs?: string | string[]; gitRemote?: string; } export type DockerVersionSchemeArgs = { dockerVersionScheme?: string; dockerVersion?: string; }; export type VersionOptions = NxReleaseArgs & GitOptions & VersionPlanArgs & FirstReleaseArgs & DockerVersionSchemeArgs & { specifier?: string; preid?: string; stageChanges?: boolean; versionActionsOptionsOverrides?: Record<string, unknown>; releaseGraph?: ReleaseGraph; }; export type ChangelogOptions = NxReleaseArgs & GitOptions & VersionPlanArgs & FirstReleaseArgs & { version?: string | null; versionData?: VersionData; to?: string; from?: string; interactive?: string; createRelease?: false | 'github' | 'gitlab'; resolveVersionPlans?: 'all' | 'using-from-and-to'; replaceExistingContents?: boolean; releaseGraph?: ReleaseGraph; }; export type PublishOptions = NxReleaseArgs & Partial<RunManyOptions> & { outputStyle?: OutputStyle; } & FirstReleaseArgs & { registry?: string; tag?: string; access?: string; otp?: number; versionData?: VersionData; releaseGraph?: ReleaseGraph; }; export type PlanOptions = NxReleaseArgs & { bump?: string; message?: string; onlyTouched?: boolean; }; export type PlanCheckOptions = BaseNxReleaseArgs & { base?: string; head?: string; files?: string; uncommitted?: boolean; untracked?: boolean; }; export type ReleaseOptions = NxReleaseArgs & FirstReleaseArgs & DockerVersionSchemeArgs & { specifier?: string; yes?: boolean; preid?: VersionOptions['preid']; skipPublish?: boolean; }; export type VersionPlanArgs = { deleteVersionPlans?: boolean; }; export type FirstReleaseArgs = { firstRelease?: boolean; }; export declare const yargsReleaseCommand: CommandModule<Record<string, unknown>, NxReleaseArgs>; export {}; //# sourceMappingURL=command-object.d.ts.map