In Gruntfile.js
, I have got:
watch: {
styles: {
files: [
'<%= yeoman.app %>/styles/{,*/}*.less'
],
tasks: ['copy:styles', 'autoprefixer']
}
}
For the path, what does {,*/}
mean indeed? How does it differ to using double asterisks **/
?