In script A, I currently have this structure:
module.exports = angular.module('myApp').controller(..).directive(..)
I am looking to add an additional directive so that it looks something like this:
module.exports = angular.module('myApp').controller(..).directive(..).directive(..)
I want to accomplish this from outside of script A.
Any thoughts on how to achieve this? I am still getting familiar with Angular, so any assistance would be greatly appreciated! Thank you!