@progress/kendo-ui
Version:
This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.
17 lines (12 loc) • 630 B
JavaScript
;
const CDN_RE = /https?:\/\/kendo\.cdn\.telerik\.com\/\d{4}\.\d+\.\d+\//g;
const TARGET = 'https://kendo.cdn.telerik.com/2026.3.811/';
module.exports = function transformer(fileInfo) {
if (!/\.html?$/i.test(fileInfo.path)) {
return undefined;
}
const source = fileInfo.source;
const updated = source.replace(CDN_RE, TARGET);
return updated !== source ? updated : undefined;
};
module.exports.aiInstructions = 'Updates Kendo UI script and stylesheet CDN links in HTML files from any previous version to 2026.3.811. The CDN pattern https://kendo.cdn.telerik.com/YYYY.R.DDD/ is matched and replaced.';