UNPKG

@nx/js

Version:

The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects.

14 lines (13 loc) 330 B
export interface PublishExecutorSchema { packageRoot?: string; registry?: string; tag?: string; otp?: number; dryRun?: boolean; access?: 'public' | 'restricted'; firstRelease?: boolean; nxReleaseVersionData?: Record< string, { currentVersion: string; newVersion: string | null; [key: string]: any } >; }