renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
14 lines • 635 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CACHE_REVISION = void 0;
exports.getLocalCacheFileName = getLocalCacheFileName;
const tslib_1 = require("tslib");
const upath_1 = tslib_1.__importDefault(require("upath"));
// Increment this whenever there could be incompatibilities between old and new cache structure
exports.CACHE_REVISION = 13;
function getLocalCacheFileName(platform, repository) {
const repoCachePath = 'renovate/repository/';
const fileName = `${repository}.json`;
return upath_1.default.join(repoCachePath, platform, fileName);
}
//# sourceMappingURL=common.js.map