Skip to content

Commit

Permalink
Updated dependencies & dropped support for Node.js < 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkphl committed May 16, 2016
1 parent c5d8f1f commit 7c904d0
Show file tree
Hide file tree
Showing 8 changed files with 251 additions and 233 deletions.
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,14 @@ sudo: false
language: node_js

node_js:
- '0.10'
- '0.12'
- '4.0'
- '5.0'
- 'iojs'


after_script:
- npm run coveralls

after_failure:
- tar -cjf "grunt-svg-sprite_travis_${TRAVIS_BUILD_NUMBER}.tar.bz2" tmp && curl --ftp-create-dirs -T "grunt-svg-sprite_travis_${TRAVIS_BUILD_NUMBER}.tar.bz2" -u $FTP_USER:$FTP_PASSWORD "ftp://jkphl.is/${TRAVIS_REPO_SLUG}/grunt-svg-sprite_travis_${TRAVIS_BUILD_NUMBER}.tar.bz2"

matrix:
allow_failures:
- node_js: iojs
fast_finish: true
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.3.0 Major maintenance release (unreleased)
* Compatible with [svg-sprite 1.3.0](https://github.com/jkphl/svg-sprite/tree/v1.3.0)
* Updated dependencies
* Removed redundant require ([svg-sprite #156](https://github.com/jkphl/svg-sprite/issues/156))
* Dropped support for Node.js < 4.0 and io.js
* Added explicit sprite size in example document ([svg-sprite #138](https://github.com/jkphl/svg-sprite/issues/138))
* Added XML entity resolution ([svg-sprite #118](https://github.com/jkphl/svg-sprite/issues/118))
* Allow multiple selectors for ID / class namespacing ([svg-sprite #109](https://github.com/jkphl/svg-sprite/issues/109))
* Switched to [patched svg2png](https://github.com/domenic/svg2png/pull/45) until media queries are properly supported (devDependencies)

## 1.2.19 Maintenance release (2016-01-11)
* Compatible with [svg-sprite 1.2.19](https://github.com/jkphl/svg-sprite/tree/v1.2.19)
* Updated dependencies
Expand Down
27 changes: 14 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"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.2.19",
"version": "1.3.0",
"homepage": "https://github.com/jkphl/gulp-svg-sprite",
"author": "Joschi Kuphal <[email protected]> (https://jkphl.is)",
"repository": {
Expand All @@ -13,7 +13,7 @@
},
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
"node": ">= 4.0"
},
"scripts": {
"test": "gulp && istanbul test _mocha --report html -- test/*.js --reporter spec",
Expand All @@ -24,26 +24,27 @@
"CHANGELOG.md"
],
"dependencies": {
"svg-sprite": "~1.2.19",
"through2": "^2.0.0",
"svg-sprite": "~1.3.0",
"through2": "^2.0.1",
"gulp-util": "^3.0.7",
"vinyl": "^1.1.0"
"vinyl": "^1.1.1"
},
"devDependencies": {
"coveralls": "*",
"event-stream": "*",
"glob": "~6.0.4",
"gulp": "^3.9.0",
"gulp-jshint": "^2.0.0",
"gulp-plumber": "^1.0.1",
"image-diff": "^1.3.0",
"glob": "~7.0.3",
"gulp": "^3.9.1",
"gulp-jshint": "^2.0.1",
"gulp-plumber": "^1.1.0",
"image-diff": "^1.5.1",
"istanbul": "*",
"jshint": "^2.9.1-rc2",
"jshint": "^2.9.2",
"mkdirp": "^0.5.1",
"pn": "^1.0.0",
"mocha": "*",
"mocha-lcov-reporter": "*",
"should": "~8.1.0",
"svg2png": "2.1.0"
"should": "~8.3.1",
"svg2png": "jkphl/svg2png"
},
"keywords": [
"gulpplugin",
Expand Down
Binary file modified test/expected/diagonal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/expected/horizontal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/expected/packed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/expected/vertical.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7c904d0

Please sign in to comment.