dbushell / grunt-svg2png

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

flatten: true not working #29

Open markusfalk opened 9 years ago

markusfalk commented 9 years ago
svg2png: {
      app: {
        files: [{
          expand: true,
          flatten: true,
          cwd: 'components/app',
          src: ['**/*.svg'],
          dest: 'build/assets/img'
        }]
      }
    },

when options set to flatten:true it still keeps all paths in dest

thanks!