Comparing version 0.5.4 to 0.5.5
{ | ||
"name": "more-css", | ||
"version": "0.5.4", | ||
"version": "0.5.5", | ||
"description": "a css pre-compiler & agressive compressor", | ||
@@ -5,0 +5,0 @@ "maintainers": [ |
@@ -369,3 +369,3 @@ var Class = require('../util/Class'), | ||
if(!S[token.type()]) { | ||
if(token.type() == Token.ID) { | ||
if(token.type() == Token.ID || token.content() == ',') { | ||
continue; | ||
@@ -372,0 +372,0 @@ } |
@@ -370,3 +370,3 @@ define(function(require, exports, module) { | ||
if(!S[token.type()]) { | ||
if(token.type() == Token.ID) { | ||
if(token.type() == Token.ID || token.content() == ',') { | ||
continue; | ||
@@ -373,0 +373,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
432445