I am currently in the process of upgrading a large AngularJS application using UpgradeModule to enable running AngularJS and Angular 6 simultaneously without going through the preparation phase, which typically involves following the AngularJS style guide.
I am curious to know if this approach is feasible when dealing with numerous controllers similar to the one below:
angular.module("MyModule").controller($scope, function ($scope) {
// code here.
};
Specifically, I am wondering whether UpgradeModule is designed to work exclusively with AngularJS components. As of now, it has not been successful in incorporating my existing controllers. I came across a working example that only utilizes AngularJS components:
UpgradeModule without preparation
I would greatly appreciate some advice on whether I should convert my AngularJS controllers into components before proceeding further with the upgrade process.