From 8fcce1204826a58a798f382123a46c77fc23ed4b Mon Sep 17 00:00:00 2001 From: Joschi Kuphal Date: Mon, 5 Jan 2015 09:57:24 +0100 Subject: [PATCH] Fixed broken rendering template path resolution --- README.md | 4 ++ package.json | 150 +++++++++++++++++++++++++-------------------------- 2 files changed, 79 insertions(+), 75 deletions(-) diff --git a/README.md b/README.md index 6284233..b3b1e4e 100644 --- a/README.md +++ b/README.md @@ -189,6 +189,10 @@ please refer to the [svg-sprite manual](https://github.com/jkphl/svg-sprite). ## 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 diff --git a/package.json b/package.json index 746850a..cb2a941 100644 --- a/package.json +++ b/package.json @@ -1,77 +1,77 @@ { - "name": "gulp-svg-sprite", - "description": "SVG sprites & stacks galore — Gulp 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/gulp-svg-sprite", - "author": { - "name": "Joschi Kuphal", - "email": "joschi@kuphal.net", - "url": "https://jkphl.is" - }, - "repository": { - "type": "git", - "url": "https://github.com/jkphl/gulp-svg-sprite.git" - }, - "bugs": { - "url": "https://github.com/jkphl/gulp-svg-sprite/issues" - }, - "licenses": [ - { - "type": "MIT", - "url": "https://github.com/jkphl/gulp-svg-sprite/blob/master/LICENSE.txt" - } - ], - "main": "index.js", - "engines": { - "node": ">= 0.10" - }, - "scripts": { - "test": "istanbul test _mocha --report html -- test/*.js --reporter spec", - "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage" - }, - "dependencies": { - "svg-sprite": "^1.0.7", - "through2": "^0.6.3", - "gulp-util": "^3.0.1" - }, - "devDependencies": { - "mocha": "*", - "coveralls": "*", - "mocha-lcov-reporter": "*", - "istanbul": "*", - "event-stream": "*", - "should": "~4.4.2", - "glob": "~4.3.1", - "svg2png": "^1.1.0", - "image-diff": "^1.0.1", - "mkdirp": "^0.5.0", - "gulp": "^3.8.10", - "gulp-jshint": "^1.9.0", - "gulp-plumber": "^0.6.6" - }, - "peerDependencies": { - "vinyl": "^0.4.6" - }, - "keywords": [ - "gulpplugin", - "icon", - "icons", - "svg", - "png", - "sprite", - "spritesheet", - "stack", - "generator", - "css", - "sass", - "less", - "stylus", - "stylesheet", - "inline", - "html", - "vector", - "rwd", - "retina", - "mustache" - ] + "name": "gulp-svg-sprite", + "description": "SVG sprites & stacks galore — Gulp 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/gulp-svg-sprite", + "author": { + "name": "Joschi Kuphal", + "email": "joschi@kuphal.net", + "url": "https://jkphl.is" + }, + "repository": { + "type": "git", + "url": "https://github.com/jkphl/gulp-svg-sprite.git" + }, + "bugs": { + "url": "https://github.com/jkphl/gulp-svg-sprite/issues" + }, + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/jkphl/gulp-svg-sprite/blob/master/LICENSE.txt" + } + ], + "main": "index.js", + "engines": { + "node": ">= 0.10" + }, + "scripts": { + "test": "istanbul test _mocha --report html -- test/*.js --reporter spec", + "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage" + }, + "dependencies": { + "svg-sprite": "^1.0.8", + "through2": "^0.6.3", + "gulp-util": "^3.0.1" + }, + "devDependencies": { + "mocha": "*", + "coveralls": "*", + "mocha-lcov-reporter": "*", + "istanbul": "*", + "event-stream": "*", + "should": "~4.4.2", + "glob": "~4.3.1", + "svg2png": "^1.1.0", + "image-diff": "^1.0.1", + "mkdirp": "^0.5.0", + "gulp": "^3.8.10", + "gulp-jshint": "^1.9.0", + "gulp-plumber": "^0.6.6" + }, + "peerDependencies": { + "vinyl": "^0.4.6" + }, + "keywords": [ + "gulpplugin", + "icon", + "icons", + "svg", + "png", + "sprite", + "spritesheet", + "stack", + "generator", + "css", + "sass", + "less", + "stylus", + "stylesheet", + "inline", + "html", + "vector", + "rwd", + "retina", + "mustache" + ] } \ No newline at end of file