I have a grunt file which has several commands. One part was written by a colleague who's left, but we can't find an explanation what it means exactly.
It does what it should do, but knowing what is exactly, is something we don't :)
This is the code:
dist: {
files: [{
expand: true,
cwd: '<%= config.tmp %>/styles/',
src: '{,**/}*.css',
dest: '<%= config.tmp %>/styles/'
}]
}
The part we're not sure is {,**/}
on line 5.