Vulcanize for angular.dart?

There is vulcanize as a tool for polymer.dart (made by a polymer transformer) which nicely puts all imported components in a row and makes it easy to maintain the application, reducing the number of round trips to the server. Is there any tool like vulcanization for angular.dart projects? especially one that can pull the entire html component into one file and make it easier to deploy angular.dart application?

+3


source to share


2 answers


You can use template-cache-transformer . From his home page:



The Template Cache Transformer generates the template cache and 
optionally merges the CSS and HTML of AngularDart components into
a hosting Web page.

      

+1


source


AngularDart has template_cache_generator which generates a Dart file to prepopulate the Angular template cache.



As far as I know, we have not been working on bringing the template cache generator to the Angular transformer group. There is no technical reason why it cannot be there.

+2


source







All Articles