postcss-selector-parser
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -0,1 +1,5 @@ | ||
# 1.0.1 | ||
* Fixes using `insertAfter` and `insertBefore` during iteration. | ||
# 1.0.0 | ||
@@ -2,0 +6,0 @@ |
@@ -136,4 +136,4 @@ 'use strict'; | ||
index = this.indexes[id]; | ||
if (exist <= index) { | ||
this.indexes[id] = index + nodes.length; | ||
if (oldIndex <= index) { | ||
this.indexes[id] = index + this.nodes.length; | ||
} | ||
@@ -153,4 +153,4 @@ } | ||
index = this.indexes[id]; | ||
if (exist <= index) { | ||
this.indexes[id] = index + nodes.length; | ||
if (oldIndex <= index) { | ||
this.indexes[id] = index + this.nodes.length; | ||
} | ||
@@ -157,0 +157,0 @@ } |
{ | ||
"name": "postcss-selector-parser", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"devDependencies": { | ||
@@ -5,0 +5,0 @@ "babel": "^5.4.3", |
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
80651