I am starting a new project that will be based on some legacy code that was written using the https://github.com/linemanjs/lineman-angular-template lineman-angular-template and Angular 1.5 components
But all the new things that I want to write as Angular 2 components. And I look how to concat all the source code from the angular @ folder into a single file let say vendor.js
I used to see such an option. How to compile Angular2 TypeScript application into one file?
src="/node_modules/angular2/bundles/angular2.dev.js"
but now node_modules / @ angular is no more bundles/angular2.dev.js
I can not use cdn for it. I need to store everything on my server. Can you offer me some kind of tool or something like that? Angular-cli will also not work for this case.
source
share