@nxworker/workspace
Version:
Nx plugin providing generators for managing workspace files, including the move-file generator for safely moving files between projects while updating all imports
20 lines (19 loc) • 605 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "clearAllCaches", {
enumerable: true,
get: function() {
return clearAllCaches;
}
});
const _treecache = require("../tree-cache");
function clearAllCaches(projectSourceFilesCache, fileExistenceCache, compilerPathsCache, dependencyGraphCache) {
projectSourceFilesCache.clear();
fileExistenceCache.clear();
compilerPathsCache.value = undefined;
_treecache.treeReadCache.clear();
dependencyGraphCache.clear();
}
//# sourceMappingURL=clear-all-caches.js.map