-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extended the ID generator callback signature (closes #176)
- Loading branch information
Showing
5 changed files
with
47 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "svg-sprite", | ||
"version": "1.3.3", | ||
"version": "1.3.4", | ||
"author": "Joschi Kuphal <[email protected]> (https://jkphl.is)", | ||
"description": "SVG sprites & stacks galore — A low-level Node.js module that takes a bunch of SVG files, optimizes them and bakes them into SVG sprites of several types along with suitable stylesheet resources (e.g. CSS, Sass, LESS, Stylus, etc.)", | ||
"homepage": "https://github.com/jkphl/svg-sprite", | ||
|
@@ -36,21 +36,21 @@ | |
}, | ||
"dependencies": { | ||
"mkdirp": "^0.5.1", | ||
"async": "^2.0.0-rc.6", | ||
"lodash": "^4.13.1", | ||
"async": "^2.0.1", | ||
"lodash": "^4.15.0", | ||
"lodash.pluck": "^3.1.2", | ||
"glob": "^7.0.5", | ||
"xmldom": "0.1.22", | ||
"xpath": "^0.0.23", | ||
"vinyl": "^1.1.1", | ||
"vinyl": "^1.2.0", | ||
"svgo": "0.6.6", | ||
"cssom": "^0.3.1", | ||
"css-selector-parser": "^1.1.0", | ||
"phantomjs-prebuilt": "^2.1.7", | ||
"phantomjs-prebuilt": "^2.1.12", | ||
"cssmin": "^0.4.3", | ||
"mustache": "^2.2.1", | ||
"js-yaml": "^3.6.1", | ||
"yargs": "^4.7.1", | ||
"yargs": "^4.8.1", | ||
"winston": "^2.2.0", | ||
"prettysize": "^0.0.3" | ||
}, | ||
|
@@ -63,7 +63,7 @@ | |
"rimraf": "", | ||
"vinyl-fs": "^2.4.3", | ||
"svg2png": "jkphl/svg2png", | ||
"image-diff": "^1.6.0", | ||
"image-diff": "^1.6.3", | ||
"node-sass": "^3.8.0", | ||
"less": "^2.7.1", | ||
"stylus": "^0.54.5", | ||
|