Precompile handlebars templates to a single JS file where templates are saved to Ember.TEMPLATES.
Install this grunt plugin next to your project's grunt.js gruntfile with:
npm install grunt-emberify
Then add this line to your project's grunt.js
gruntfile:
Usage:
grunt.initConfig({
handlebars_embed: {
// includes templates as:
// Ember.TEMPLATES[<name>] = Ember.Handlebars.compile(<template content>);
'allMyTemplates.js': [ 'client/lib/**.handlebars' ]
},
/* ... OR ... */
handlebars_precompile: {
// Compiles templates.
// Includes as:
// Ember.TEMPLATES[<name>] = Ember.Handlebars.template(<compiled content>);
'allMyTemplates.js': [ 'client/lib/**.handlebars' ]
},
/* ... */
});
grunt.loadNpmTasks('grunt-emberify');
Copyright (c) 2012 Karl Gyllstrom
Licensed under the MIT license.