grunt-we-ember-template
Version:
An npm module for preprocess We.js templates and override templates if exists in we.js active theme folder
46 lines (35 loc) • 1.48 kB
Markdown
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
```shell
npm install grunt-we-ember-template --save-dev
```
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
```js
grunt.loadNpmTasks('grunt-we-ember-template');
```
```js
emberhandlebars: {
compile: {
options: {
templateName: function(sourceFile){
var newSource = sourcefile.replace('src/templates/');
return newSource.replace('.handlebars');
},
// theme folder used to override templates
// default to node_modules/we-theme-default/templates/ember/
themeTemplatesFolder: 'node_modules/we-theme-default/templates/ember/'
},
// local templates
files: [
'src/templates/*.handlebars'
],
dest: 'src/templates.js'
}
}
```
Copyright (c) 2014 Alberto Souza. Licensed under the MIT license.