My imagemin doesn't seem to compress jpgs? It says: "37 images found. Saved 0 B.
Weirdly enough it works on .gif and .png so I know it's working to some degree. Anyone else had this problem?
I've tried uninstalling/re-installing. Also got the latest version: 0.9.4.
Here's my code:
imagemin: {
dynamic: {
options: {
optimizationLevel: 3
},
files: [{
expand: true,
cwd: 'imgs-src/',
src: ['**/*.{png,jpg,gif}'],
dest: 'imgs/'
}]
}
}
Thanks!