#Example Usage
'compile-html': {
tablet: {
partialsDir: 'app/html/includes/',
files: [{
expand: true,
cwd:'app/html',
src: '*.html',
dest: 'dist/html',
ext: '.tablet.html'
}],
context: {
isPhone: false,
device: 'tablet'
}
},
phone: {
partialsDir: 'app/html/includes/',
files: [{
expand: true,
cwd:'app/html',
src: '*.html',
dest: 'dist/html',
ext: '.phone.html'
}],
context: {
isPhone: true,
device: 'phone'
}
}
}
#TODO:
- Add Helper support