So this is my config:
// Renames files for browser caching purposes
filerev: {
dist: {
expand: true,
cwd: '<%= yeoman.dist %>',
src: [
'script/**/*.js',
'style/**/*.css',
'img/**/*.{png,jpg,jpeg,gif,webp,svg}',
'font/**/*.ttf'
]
}
},
Unfortunately, leaving out the dest doesn't trigger the 'replace' behavior and also places all my output files in the root of my project.
Do you think you could add the option to explicitly enable replacement?