This repository was archived by the owner on Mar 26, 2018. It is now read-only.
This repository was archived by the owner on Mar 26, 2018. It is now read-only.
Replace doesn't work when using expand: true #20
Open
Description
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?