grunt-imagine icon indicating copy to clipboard operation
grunt-imagine copied to clipboard

Convert the sprite task to the grunt convention

Open LaurentGoderre opened this issue 10 years ago • 0 comments

Convert the task options from

  sprites: {
      icons36: {
          src: ['src/img/icons36/*.png'],
          css: 'src/css/icons36.css',
          map: 'src/img/icons36.png',
          output: "scss"
      }
  }

to

  sprites: {
      icons36: {
          options: {
              css: 'src/css/icons36.css',
              map: 'src/img/icons36.png',
              output: "scss"
          },
          src: ['src/img/icons36/*.png'],
      }
  }

LaurentGoderre avatar Nov 15 '13 16:11 LaurentGoderre