UNPKG

nx

Version:

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

13 lines 555 B
/** * Prompts user for analytics preference if not already set in nx.json. * Only prompts in interactive terminals, not in CI. */ export declare function ensureAnalyticsPreferenceSet(): Promise<void>; export declare function promptForAnalyticsPreference(): Promise<boolean>; /** * Generates a deterministic workspace ID. * Priority: nxCloudId > git remote URL (hashed). * Returns null if neither is available (no telemetry). */ export declare function generateWorkspaceId(cwd?: string): string | null; //# sourceMappingURL=analytics-prompt.d.ts.map