import {chain, Rule, schematic} from "@angular-devkit/schematics"

export function updateToV2(): Rule {
  console.log(
    '\n.updateToV4.....',
  );
  return chain([
    // preUpdate,
    // finishedUpdate
  ]);
}


export function postUpdate(): Rule {
  return () =>
    console.log(
      '\nComplete! Please check the output above for any issues that were detected but could not be automatically fixed.',
    );
}
