dbushell / grunt-svg2png

Grunt plugin to rasterize SVG to PNG images using PhantomJS
MIT License
76 stars 37 forks source link

Module ignores grunt filter function #8

Open Chaptykov opened 10 years ago

Chaptykov commented 10 years ago
svg2png: {
    images: {
        files: [{
            src: ['private/svg/*.svg'],
            dest: 'build/tmp/',
            filter: function(filepath) {
                return false;
            }
        }]
    }
}

Output: ignore-filter

Expected result: expected-result