Files
lunchrun.me/tasks/options/jade.js
2014-03-08 18:37:19 -06:00

15 lines
330 B
JavaScript

// jade
module.exports = function(config) {
return {
templates: {
files: [{
expand: true,
cwd: './assets/linker/templates/',
src: ['*.jade'],
dest: './assets/linker/templates/',
ext: '.html'
}]
}
};
};