0.1.1 • Published 8 years ago

grunt-sass-imagemap v0.1.1

Weekly downloads
55
License
-
Repository
github
Last release
8 years ago

grunt-sass-imagemap

Plugin to generate a map file containing image information from folders.

Example Usage

Add the following to your gruntfile:

grunt.initConfig({
  sass_imagemap: {
    all: {
      files: [{
        cwd:  'images',
        src:  '**/*.{png,jpg,gif,jpeg}',
        dest: 'sass/import/maps/_images.scss'
      }]
    }
  },
});

Enable the task in your gruntfile:

grunt.loadNpmTasks( 'grunt-sass-imagemap' );