UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

56 lines 1.95 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getBucket = getBucket; function getBucket(config, currentVersion, newVersion, versioningApi) { const { separateMajorMinor, separateMultipleMajor, separateMultipleMinor, separateMinorPatch, } = config; if (!separateMajorMinor) { return 'latest'; } const fromMajor = versioningApi.getMajor(currentVersion); const toMajor = versioningApi.getMajor(newVersion); // istanbul ignore if: error case if (toMajor === null) { return null; } // Check for major update type first if (fromMajor !== toMajor) { if (separateMultipleMajor) { return `v${toMajor}`; } // default path for major updates is not to separate them return 'major'; } // If we reach here then we know it's non-major const fromMinor = versioningApi.getMinor(currentVersion); const toMinor = versioningApi.getMinor(newVersion); // istanbul ignore if: error case if (fromMinor === null || toMinor === null) { return 'non-major'; } // Check the minor update type first if (fromMinor !== toMinor) { if (separateMultipleMinor) { return `v${toMajor}.${toMinor}`; } if (separateMinorPatch) { return 'minor'; } // default path for minor updates is not to separate them from patch return 'non-major'; } // If we reach here then we know it's a patch release /* future option if (separateMultiplePatch) { const toPatch = versioningApi.getPatch(newVersion); if (toPatch !== null && separateMultiplePatch) { return `v${toMajor}.${toMinor}.${toPatch}`; } } */ if (separateMinorPatch) { return 'patch'; } // default path for patch updates is not to separate them from minor return 'non-major'; } //# sourceMappingURL=bucket.js.map