Another Brunch plugin for Ember.js template precompiling
npm install ember-precompiler-brunchYour application's jQuery, Handlebars and Ember files are used when compiling
templates so there are never any version discrepancies.
"ember-precompiler-brunch": "x.y.z" to package.json of your brunch app.Add precompile: true and paths to the files.templates object of your app's config.coffee
````
files:
templates:
precompile: true
defaultExtension: 'hbs'
joinTo: 'js/templates.js' : /^app/
paths:
jquery: 'vendor/scripts/jquery.js'
handlebars: 'vendor/scripts/handlebars.js'
ember: 'vendor/scripts/ember.js'
yep.