UNPKG

nx

Version:

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

24 lines 1.35 kB
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; /** * Helper to serialize data either using v8 serialization or JSON serialization, based on * the user's preference and the success of each method. Should only be used by "client" side * connections, daemon or other servers should respond based on the type of serialization used * by the client it is communicating with. * * @param data Data to serialize * @param force Forces one serialization method over the other * @returns Serialized data as a string */ export declare function serialize(data: any, force?: 'v8' | 'json'): string; //# sourceMappingURL=socket-utils.d.ts.map