Skip to content

Commit

Permalink
Several smaller bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jkphl committed Mar 8, 2015
1 parent a977fc7 commit ec42797
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
@@ -1,7 +1,6 @@
language: node_js
node_js:
- '0.10'
- '0.12'
before_install:
- npm update -g npm
after_script:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,4 +1,4 @@
## master (will become 1.0.19)
## 1.0.19 Maintenance release (2015-03-08)
* Changed alias for shape.dest CLI option
* Updated dependencies
* Fixed ID bug with view sprites
Expand Down
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -32,6 +32,7 @@ Table of contents
* [Basic examples](#basic-examples)
* [Output destinations](#output-destinations)
* [Pre-processor formats and the sprite location](#pre-processor-formats-and-the-sprite-location)
* [Full configuraton documentation](docs/configuration.md)
* [Online configurator & project kickstarter](http://jkphl.github.io/svg-sprite)
* [Advanced techniques](#advanced-techniques)
* [Meta data injection](docs/meta-data.md)
Expand Down Expand Up @@ -321,6 +322,11 @@ Special care needs to be taken when you create a **CSS sprite** («css» or «vi
So even if you don't enable plain CSS output explictly, please make sure to set `mode.<mode>.dest` to **where your final CSS file is intended to be**.


### Full configuraton documentation

The complete configuration documentation including all options [can be found here](docs/configuration.md).


### Online configurator & project kickstarter

To get you quickly off the ground, I made a simple [online configurator](http://jkphl.github.io/svg-sprite) that lets you create a custom *svg-sprite* configuration in seconds. You may download the results as plain JSON, Node.js project, Gruntfile or Gulpfile. Please visit the configurator at http://jkphl.github.io/svg-sprite.
Expand Down
14 changes: 7 additions & 7 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "svg-sprite",
"version": "1.0.18",
"version": "1.0.19",
"author": {
"name": "Joschi Kuphal",
"email": "joschi@kuphal.net",
Expand Down Expand Up @@ -35,19 +35,19 @@
"dependencies": {
"mkdirp": "^0.5.0",
"async": "^0.9.0",
"lodash": "^3.1.0",
"glob": "^4.3.5",
"lodash": "^3.4.0",
"glob": "^5.0.1",
"xmldom": "^0.1.19",
"xpath": "^0.0.9",
"vinyl": "^0.4.6",
"svgo": "^0.5.0",
"cssom": "^0.3.0",
"css-selector-parser": "^1.0.4",
"phantomjs": "^1.9.15",
"cssmin": "^0.4.2",
"phantomjs": "^1.9.16",
"cssmin": "^0.4.3",
"mustache": "^1.0.0",
"js-yaml": "^3.2.6",
"yargs": "^3.2.1",
"js-yaml": "^3.2.7",
"yargs": "^3.4.5",
"winston": "^0.9.0",
"prettysize": "^0.0.3"
},
Expand Down

0 comments on commit ec42797

Please sign in to comment.