UNPKG

nx

Version:

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

12 lines (11 loc) 426 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FORCE_SHUTDOWN = void 0; exports.isHandleForceShutdownMessage = isHandleForceShutdownMessage; exports.FORCE_SHUTDOWN = 'FORCE_SHUTDOWN'; function isHandleForceShutdownMessage(message) { return (typeof message === 'object' && message !== null && 'type' in message && message['type'] === exports.FORCE_SHUTDOWN); }