grunt-spritefiles
Grunt library for using spritesmith, a spritesheet and CSS pre-processor utility.
Synopsis
Spritesmith accepts a list of images, stiches them together, and returns that image along with a coordinate map of where each image is located and its dimensions.
Grunt is a node.js based CLI build tool.
json2css converts the output from Spritesmith and generates variables and helper functions for hooking into inside of your CSS pre-processor.
When you combine all three of these, you get a grunt plugin that makes maintaining sprites a breeze.
Getting Started
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-spritefiles
Then add this line to your project's grunt.js
gruntfile:
grunt;
Requirements
Spritesmith supports multiple sprite engines however all of the current engines require external software to be installed. See spritesmith for instructions.
Why Use This Task
You need to generate multiple sprite images and run custom processing over the results. If this isn't true, you probably want a simpler, more maintained plugin like grunt-spritesmith, the basis for this plugin. That being said, this plugin works and I'm happy to receive patches if it doesn't.
This module was written for a large, complex, existing product that needed to programatically generate sprite-creation tasks and run custom processing for sprites without changing old workflow. It uses the typical grunt src/dest/files attributes to generate multiple sprites per task. The spritesmith results are passed to a function to allow any customised processing.
Usage
// Load package if using extra functions from itvar sprite = ; // Provide a custom processing functionvar { // grunt: Grunt object, as available to task // that: this object from task // sprite: grunt files object for sprite // result: spritesmith result object gruntverbose; gruntverbose;}; grunt;
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint via grunt and test via npm test
.
Algorithms
Algorithms are maintained via twolfson/layout. If you would like to add one, please submit it via a pull request.
Engines and image options
Engines and image options are maintained via Ensighten/spritesmith. If you would like to add one, please submit it via a pull request.
CSS formats
CSS formats are maintained via twolfson/json2css. If you would like to add one, please submit it via a pull request.
License
Copyright (c) 2012 Ensighten Copyright (c) 2013 Recognia Inc Licensed under the MIT license.