Comparing version 0.12.1 to 0.12.2
0.12.2 / 2011-05-03 | ||
================== | ||
* Fixed issue with `^=` attr selector causing infinite loop. Closes #244 | ||
* Fixed multiple occurrences of `&` in selectors. Closes #243 | ||
0.12.1 / 2011-04-29 | ||
@@ -3,0 +9,0 @@ ================== |
@@ -801,3 +801,4 @@ | ||
if (this._ident == this.peek()) return this.id(); | ||
while (']' != this.lookahead(i++).type) ; | ||
while (']' != this.lookahead(i++).type | ||
&& 'selector' != this.lookahead(i).type) ; | ||
if ('=' == this.lookahead(i).type) { | ||
@@ -804,0 +805,0 @@ this._ident = this.peek(); |
@@ -27,3 +27,3 @@ | ||
exports.version = '0.12.1'; | ||
exports.version = '0.12.2'; | ||
@@ -30,0 +30,0 @@ /** |
@@ -280,3 +280,3 @@ | ||
if (~buf[i].indexOf('&')) { | ||
str = buf[i].replace('&', str).trim(); | ||
str = buf[i].replace(/&/g, str).trim(); | ||
} else { | ||
@@ -283,0 +283,0 @@ str += ' ' + buf[i].trim(); |
{ "name": "stylus" | ||
, "description": "Robust, expressive, and feature-rich CSS superset" | ||
, "version": "0.12.1" | ||
, "version": "0.12.2" | ||
, "author": "TJ Holowaychuk <tj@vision-media.ca>" | ||
@@ -5,0 +5,0 @@ , "keywords": ["css", "parser", "style", "stylesheets", "jade", "language"] |
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
7454
205262
64