Assume that you want to create a directive in AngularJS that requires an external CSS file.
Are there any best practices on where to store the directive's CSS content?
Edit : I am after a solution that in order to copy my directive to another anguarljs app, I will only need to copy the directive code and not have to go over all my CSS.
In the case where there is a templateUrl parameter in the directive, I guess the best place to put the directive's CSS is the HTML template, or not?