grunt-ogel
v0.1.0
Published
Grunt task for the ogel templating system
Downloads
1
Maintainers
Readme
grunt-ogel
Grunt task that leverages the ogel templating system.
Installation
npm install grunt-ogel --save-dev
Usage
The task requires that 3 options be set.
- src: this is where your html files reside
- dest: this is where you want ogel to put the final output
- templateDir: this is where your template files reside
Example
//gruntfile.js
grunt.initConfig({
ogel: {
main: {
options: {
src: 'src',
templateDir: 'src/templates',
dest: 'build'
}
}
}
});