Comparing version 0.12.3 to 0.12.4
0.12.4 / 2011-05-12 | ||
================== | ||
* Added support for underscore in identifiers. Closes #247 | ||
* Fixed __@keyframe__ block evaluation. Closes #252 | ||
0.12.3 / 2011-05-08 | ||
@@ -3,0 +9,0 @@ ================== |
@@ -512,3 +512,3 @@ | ||
/** | ||
* -?[a-zA-Z$] [-\w\d$]* | ||
* -?[_a-zA-Z$] [-\w\d$]* | ||
*/ | ||
@@ -518,3 +518,3 @@ | ||
var captures; | ||
if (captures = /^(-?[a-zA-Z$][-\w\d$]*)/.exec(this.str)) { | ||
if (captures = /^(-?[_a-zA-Z$][-\w\d$]*)/.exec(this.str)) { | ||
var name = captures[1]; | ||
@@ -521,0 +521,0 @@ this.skip(captures); |
@@ -27,3 +27,3 @@ | ||
exports.version = '0.12.3'; | ||
exports.version = '0.12.4'; | ||
@@ -30,0 +30,0 @@ /** |
@@ -184,2 +184,6 @@ | ||
keyframes.name = this.visit(keyframes.name).first.name; | ||
keyframes.frames = keyframes.frames.map(function(frame){ | ||
frame.block = this.visit(frame.block); | ||
return frame; | ||
}, this); | ||
return keyframes; | ||
@@ -186,0 +190,0 @@ }; |
{ "name": "stylus" | ||
, "description": "Robust, expressive, and feature-rich CSS superset" | ||
, "version": "0.12.3" | ||
, "version": "0.12.4" | ||
, "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
205754
7459