I recently started using angularjs and at the moment I am working on developing someone else's code. The whole application is divided into multiple files, but at the end they are used from single application.js file.
I have a file looking like this:
//= require (some path)
//= require (some path)
angular.element(document).ready(function () {
angular
.bootstrap(document, [
(multiple routes)
]);
});
Seems like I need to compile this file to generate a new, bigger file for whole app. I can't figure how, though.