Skip to content

Commit

Permalink
Fixed broken rendering template path resolution (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkphl committed Jan 5, 2015
1 parent b00f8df commit becff2a
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 67 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,10 @@ In lieu of a formal styleguide, take care to maintain the existing coding style.
Release history
---------------

#### v1.0.8 Bugfix release
* Compatible with [svg-sprite 1.0.8](https://github.com/jkphl/svg-sprite/tree/v1.0.8)
* Fixed broken rendering template path resolution ([#29](https://github.com/jkphl/grunt-svg-sprite/issues/29))

#### v1.0.7 Feature & bugfix release
* Compatible with [svg-sprite 1.0.7](https://github.com/jkphl/svg-sprite/tree/v1.0.7)
* Improved error handling
Expand Down
134 changes: 67 additions & 67 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,69 +1,69 @@
{
"name": "grunt-svg-sprite",
"description": "SVG sprites & stacks galore — Grunt plugin wrapping around svg-sprite that reads in a bunch of SVG files, optimizes them and creates SVG sprites and CSS resources in various flavours",
"version": "1.0.7",
"homepage": "https://github.com/jkphl/grunt-svg-sprite",
"author": {
"name": "Joschi Kuphal",
"email": "joschi@kuphal.net",
"url": "https://jkphl.is"
},
"repository": {
"type": "git",
"url": "https://github.com/jkphl/grunt-svg-sprite.git"
},
"bugs": {
"url": "https://github.com/jkphl/grunt-svg-sprite/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jkphl/grunt-svg-sprite/blob/master/LICENSE.txt"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"svg-sprite": "^1.0.7",
"prettysize": "^0.0.3",
"chalk": "^0.5.1"
},
"devDependencies": {
"grunt-contrib-jshint": "^0.9.2",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-nodeunit": "^0.3.3",
"grunt": "~0.4.5",
"svg2png": "^1.1.0",
"image-diff": "^1.0.1"
},
"peerDependencies": {
"grunt": "~0.4.5"
},
"keywords": [
"gruntplugin",
"icon",
"icons",
"svg",
"png",
"sprite",
"spritesheet",
"stack",
"generator",
"css",
"sass",
"less",
"stylus",
"stylesheet",
"inline",
"html",
"vector",
"rwd",
"retina",
"mustache"
]
"name": "grunt-svg-sprite",
"description": "SVG sprites & stacks galore — Grunt plugin wrapping around svg-sprite that reads in a bunch of SVG files, optimizes them and creates SVG sprites and CSS resources in various flavours",
"version": "1.0.8",
"homepage": "https://github.com/jkphl/grunt-svg-sprite",
"author": {
"name": "Joschi Kuphal",
"email": "joschi@kuphal.net",
"url": "https://jkphl.is"
},
"repository": {
"type": "git",
"url": "https://github.com/jkphl/grunt-svg-sprite.git"
},
"bugs": {
"url": "https://github.com/jkphl/grunt-svg-sprite/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jkphl/grunt-svg-sprite/blob/master/LICENSE.txt"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"svg-sprite": "^1.0.8",
"prettysize": "^0.0.3",
"chalk": "^0.5.1"
},
"devDependencies": {
"grunt-contrib-jshint": "^0.9.2",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-nodeunit": "^0.3.3",
"grunt": "~0.4.5",
"svg2png": "^1.1.0",
"image-diff": "^1.0.1"
},
"peerDependencies": {
"grunt": "~0.4.5"
},
"keywords": [
"gruntplugin",
"icon",
"icons",
"svg",
"png",
"sprite",
"spritesheet",
"stack",
"generator",
"css",
"sass",
"less",
"stylus",
"stylesheet",
"inline",
"html",
"vector",
"rwd",
"retina",
"mustache"
]
}

0 comments on commit becff2a

Please sign in to comment.