@ng-doc/builder
Version:
<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/ng-doc/ng-doc"> <img src="https://ng-doc.com/assets/images/ng-doc.svg?raw=true" alt="Logo" height="150px"> </a>
16 lines • 520 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCacheDirPath = getCacheDirPath;
const tslib_1 = require("tslib");
const find_cache_dir_1 = tslib_1.__importDefault(require("find-cache-dir"));
const path = tslib_1.__importStar(require("path"));
/**
* Returns cache directory path
*/
function getCacheDirPath() {
return path.join((0, find_cache_dir_1.default)({
name: 'ng-doc',
create: true,
}) ?? '.cache');
}
//# sourceMappingURL=get-cache-dir-path.js.map
;