UNPKG

nx

Version:

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

13 lines (12 loc) 765 B
export declare const isWindows: boolean; /** * For IPC with the daemon server we use unix sockets or windows named pipes, depending on the user's operating system. * * See https://nodejs.org/dist/latest-v14.x/docs/api/net.html#net_identifying_paths_for_ipc_connections for a full breakdown * of OS differences between Unix domain sockets and named pipes. */ export declare const getFullOsSocketPath: () => string; export declare const getForkedProcessOsSocketPath: (id: string) => string; export declare const getPluginOsSocketPath: (id: string) => string; export declare function killSocketOrPath(): void; export declare function serializeResult(error: Error | null, serializedProjectGraph: string | null, serializedSourceMaps: string | null): string | null;