Compile jade templates with grunt.
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-jade
Then add this line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-jade');
To your grunt.js gruntfile, add:
jade: {
no_options: {
src: ['path/to/src/*.jade'],
dest: 'dest/path'
}
}
For AMD compilation, add:
(dependencies
is what you want the runtime to be named)
jade: {
amd: {
src: ['path/to/src/*.jade'],
dest: 'dest/path',
wrapper: {
amd: true,
dependencies: 'jade'
}
}
}
For debug compilation, add:
jade: {
debug: {
src: ['path/to/src/*.jade'],
dest: 'dest/path',
options: {
compileDebug: true
}
}
}
For HTML compilation (instead of JS), add:
jade: {
html: {
src: ['path/to/src/*.jade'],
dest: 'dest/path',
options: {
client: false
}
}
}
For unwrapped functions, add:
jade: {
unwrapped: {
src: ['path/to/src/*.jade'],
dest: 'dest/path/',
wrapper: {
wrap: false
}
}
}
For no runtime file, add:
jade: {
no_runtime: {
src: ['path/to/src/*.jade'],
dest: 'dest/path/',
options: {
runtime: false,
}
}
}
options: {
client: true,
runtime: true,
compileDebug: false
}
wrapper: {
wrap: true,
amd: false,
dependencies: ''
}
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
(Nothing yet)
Copyright (c) 2012 Blaine Bublitz Licensed under the MIT license.