UNPKG

nx

Version:

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

20 lines (19 loc) 736 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HASH_MULTI_GLOB = exports.HASH_GLOB = void 0; exports.isHandleHashGlobMessage = isHandleHashGlobMessage; exports.isHandleHashMultiGlobMessage = isHandleHashMultiGlobMessage; exports.HASH_GLOB = 'HASH_GLOB'; function isHandleHashGlobMessage(message) { return (typeof message === 'object' && message !== null && 'type' in message && message['type'] === exports.HASH_GLOB); } exports.HASH_MULTI_GLOB = 'HASH_MULTI_GLOB'; function isHandleHashMultiGlobMessage(message) { return (typeof message === 'object' && message !== null && 'type' in message && message['type'] === exports.HASH_MULTI_GLOB); }