UNPKG

workspace-tools

Version:

A collection of utilities that are useful in a git-controlled monorepo managed by one of these tools:

14 lines 504 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isCachingEnabled = exports.setCachingEnabled = void 0; let cachingEnabled = true; /** Enable or disable caching for all utilities that support caching */ function setCachingEnabled(enabled) { cachingEnabled = enabled; } exports.setCachingEnabled = setCachingEnabled; function isCachingEnabled() { return cachingEnabled; } exports.isCachingEnabled = isCachingEnabled; //# sourceMappingURL=isCachingEnabled.js.map