@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) • 533 B
JavaScript
;
const CDN_RE = /https?:\/\/kendo\.cdn\.telerik\.com\/\d{4}\.\d+\.\d+\//g;
const TARGET = 'https://kendo.cdn.telerik.com/2013.1.319/';
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 = 'The Kendo UI script CDN links in your HTML files have been updated to version 2013.1.319.';