My original code has formatting:
angular.module('appModule', [
'dep1', 'dep2',
'dep3',
'dep4'
]).run(...);
Needless to say the app has ALOT more dependencies, however, this task doesnt preserve formatting and outputs a humongous one-liner.
angular.module('appModule', ['dep1', 'dep2', 'dep3', 'dep4']).run(function() {
//run code
});
Unfortunately, I cannot use it like this as it makes the code hard to read, manage, and merge.
My original code has formatting:
Needless to say the app has ALOT more dependencies, however, this task doesnt preserve formatting and outputs a humongous one-liner.
Unfortunately, I cannot use it like this as it makes the code hard to read, manage, and merge.