I use Lee Munroe's grunt-email-workflow to create a set of email templates, but I cannot find where the tasks are configured.
When I run "grunt" from the terminal, I see that several tasks are being performed: -clean -sass -coloured pages -juice, etc.

But Gruntfile.js does not contain anything from:
module.exports = function(grunt) {
require('load-grunt-config')(grunt, {
data: {
paths: {
src: 'src',
src_img: 'src/img',
dist: 'dist',
dist_img: 'dist/img',
preview: 'preview'
},
secrets: grunt.file.readJSON('secrets.json')
}
});
};
Did I miss something?
source
share