@progress/kendo-cli 1.9.2-develop.1 → 1.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -50950,7 +50950,6 @@ async function runCodemodsFor(pkg, args) {
50950
50950
  const pkgPath = getPkgJsonPath(resolvedPkgFile);
50951
50951
  const pkgJson = requireFunc((0, path_1.join)(pkgPath, "package.json"));
50952
50952
  const migrations = pkgJson["@progress"]?.migrations;
50953
- console.log(migrations);
50954
50953
  if (migrations) {
50955
50954
  await runMigrations({
50956
50955
  migrations,
@@ -51025,7 +51024,6 @@ async function runCodemods({ migrations, pkgPath, pkgJson, files, originalFiles
51025
51024
  function* getCodemods(codemods, semverRange) {
51026
51025
  const availableVersions = Object.keys(codemods).sort(semverComparator);
51027
51026
  for (const ver of availableVersions) {
51028
- console.log(`Checking version ${ver} ${semverRange}`, semver.intersects(semverRange, ver));
51029
51027
  if (semver.intersects(semverRange, ver)) {
51030
51028
  const migrations = Array.isArray(codemods[ver])
51031
51029
  ? codemods[ver]