@zero-version/monorepo.cache v0.0.32-beta
Cache implementation of @zero-version/monorepo.
Support ☕
Are you using a package I've developed and finding it useful? Or have you looked at one of my repositories and learnt something new? If so, please consider buying me a coffee. Thanks!
Usage
This caching implementation of a monorepo utility will cache the results of the getMonorepoMeta
call in a file at the root of a solution, making it useful for build tools that have projects which will repeatedly look up meta data for a solution.
import { monorepoCached } from '@zero-version/monorepo.cache';
import { monorepo as monorepoCore } from '@zero-version/monorepo.core';
const core = monorepoCore();
const monorepo = monorepoCached(core);
const startDir = process.cwd();
console.log(monorepo.getSolutionDir(startDir));
console.log(monorepo.getMonorepoMeta(startDir));
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago