Closed josephbergdoll closed 8 years ago
@josephbergdoll Can you post your grunt file? Need a little more context
@jeremypeter
emailBuilder:
inline:
options:
encodeSpecialChars: true
files:
expand: true
cwd: 'email/'
src: ['**/*.html']
dest: 'email/_inline'
@josephbergdoll Try this, the files
property needs to be an array instead of an object:
emailBuilder:
inline:
options:
encodeSpecialChars: true
files: [
expand: true
cwd: 'email/'
src: ['**/*.html']
dest: 'email/_inline
]
That did it, many thanks. Strange, though: all of the files properties for my other tasks are objects!
Keep getting this and can't figure out the source.