elastic-svg
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -1,2 +0,2 @@ | ||
// v0.0.5 | ||
// v0.0.6 | ||
@@ -124,6 +124,6 @@ (function() { | ||
// support various modular environments | ||
if (typeof define === "function" && define.amd) { // RequireJS | ||
if (typeof module === "object" && module.exports) { // webpack + browserify | ||
module.exports = elasticSVG; | ||
} else if (typeof define === "function" && define.amd) { // RequireJS | ||
define(elasticSVG); | ||
} else if (typeof module === "object" && module.exports) { // browserify | ||
module.exports = elasticSVG; | ||
} else { | ||
@@ -130,0 +130,0 @@ root.elasticSVG = elasticSVG; // directly included |
{ | ||
"name": "elastic-svg", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Responsive SVGs with no dependencies", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -43,2 +43,3 @@ # Elastic SVG elements | ||
## Change log | ||
+ *v0.0.6*: Flipped module and AMD check so as not to confuse webpack | ||
+ *v0.0.5*: Now stays fixed height if only height specified | ||
@@ -45,0 +46,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
27793
47