tschaub / grunt-newer

Configure Grunt tasks to run with newer files only.
https://npmjs.org/package/grunt-newer
MIT License
945 stars 61 forks source link

Doesn't work with grunt-cwebp #85

Open GrzegorzZajac000 opened 8 years ago

GrzegorzZajac000 commented 8 years ago

Grunt-newer doesn't work with grunt-cwebp. This is my configuration:

         cwebp: {
            public: {
                options: {
                    q       : 80,
                    alpha_q : 80
                },
                files: [{
                    expand : true,
                    cwd    : 'public/images/', 
                    src    : ['**/*.{png,jpg,jpeg,gif}'],
                    dest   : 'public/images/webp'
                }]
            }
        },