grunt-contrib-clean
grunt-contrib-clean copied to clipboard
Grunt variables not expanded
Grunt variables (e.g. <%= something %>
) are not expanded, i.e., they are processed as literals. Is it possible to use these variables? It'd be useful being able to do something like:
clean: {
js: [
'<%= concat.dist.dest %>',
'<%= uglify.dist.dest %>'
]
}
@luileito process_templates :eyes: works fine here.