Files
meteor/packages/templating
David Glasser 36ff10c08c Keep minifiers out of built programs
This breaks the path meteor-platform -> webapp -> boilerplate-generator
-> spacebars-compiler -> minifiers which ended up shipping all of uglify
with each built app, even though the code generated in
boilerplate-generator is just eval'd without ever being shown to humans.

Beautification still works on JS generated by templating (*.html),
though.
2015-03-05 16:45:20 -08:00
..
2015-01-12 11:16:06 -08:00
2015-02-23 21:24:49 -08:00

templating

Define Blaze templates in .html files. Most Meteor apps use this package.

This build plugin parses all of the HTML files in your app and looks for three top-level tags:

  • <head> - appended to the head section of your HTML
  • <body> - appended to the body section of your HTML
  • <template name="templateName"> - compiled into a Blaze template, which can be included with {{> templateName}} or referenced in JS code with Template.templateName`.

For more details, see the Meteor docs about templating and the Blaze project page.