Open jordanmkoncz opened 9 years ago
I had the same issue with my project. I think src
and dest
parameters are not arrays any more.
Try this:
options: {
tag: '../../../css/email.css'
},
- src: ['templates/email/Source/*.html'],
- dest: ['templates/email/Working/']
+ src: 'templates/email/Source/*.html',
+ dest: 'templates/email/Working/'
}
I've run into an issue after updating this module to version 0.3.4. When running a Grunt task that uses the inline plugin, the following warning occurs, and the task is aborted:
If I revert to version 0.3.2 of this plugin, the task runs perfectly.
The output with the
verbose
flag is as follows:Here's what the
inline:main
task looks like: