Comparing version 0.5.5 to 0.5.6
@@ -0,1 +1,4 @@ | ||
### [ [>](https://github.com/svg/svgo/tree/v0.5.6) ] 0.5.6 / 13.08.2015 | ||
* Fixed paths removing. | ||
### [ [>](https://github.com/svg/svgo/tree/v0.5.5) ] 0.5.5 / 05.08.2015 | ||
@@ -2,0 +5,0 @@ * Reverted debugging changes. |
{ | ||
"name": "svgo", | ||
"version": "0.5.5", | ||
"version": "0.5.6", | ||
"description": "Nodejs-based tool for optimizing SVG vector graphics files", | ||
@@ -51,6 +51,6 @@ "keywords": [ "svgo", "svg", "optimize", "minify" ], | ||
"mocha": "~2.2.5", | ||
"should": "7.0.2", | ||
"should": "7.0.3", | ||
"istanbul": "~0.3.17", | ||
"mocha-istanbul": "~0.2.0", | ||
"coveralls": "~2.11.3" | ||
"coveralls": "~2.11.4" | ||
}, | ||
@@ -57,0 +57,0 @@ "engines": { |
@@ -9,2 +9,4 @@ 'use strict'; | ||
exports.description = 'removes specified attributes'; | ||
exports.params = { | ||
@@ -11,0 +13,0 @@ attrs: [] |
@@ -26,3 +26,3 @@ 'use strict'; | ||
var regValidPath = /M\s*(?:[-+]?(?:\d*\.\d+|\d+\.?)([eE][-+]?\d+)?(?![\de.])\s*,?\s*){2}\D*\d/i; | ||
var regValidPath = /M\s*(?:[-+]?(?:\d*\.\d+|\d+(?:\.|(?!\.)))([eE][-+]?\d+)?(?!\d)\s*,?\s*){2}\D*\d/i; | ||
@@ -29,0 +29,0 @@ /** |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
303090
8079