useasdemo
Version:
20 lines (16 loc) • 437 B
text/typescript
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.',
);
}