Socket
Socket
Sign inDemoInstall

stylus

Package Overview
Dependencies
Maintainers
0
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stylus - npm Package Compare versions

Comparing version 0.6.3 to 0.6.4

6

._History.md

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR��>��!�!com.macromates.caret{
column = 0;
line = 6;
Mac OS X  2��ATTR��j��!�!com.macromates.caret{
column = 5;
line = 1;
}

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR��D��"�"com.macromates.caret{
Mac OS X  2��ATTR��p��"�"com.macromates.caret{
column = 21;
line = 2;
}

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR��F��#�#com.macromates.caret{
Mac OS X  2��ATTR��r��#�#com.macromates.caret{
column = 62;
line = 82;
}
0.6.4 / 2011-02-24
==================
* Fixed for within brackets. Closes #146
0.6.3 / 2011-02-22

@@ -3,0 +8,0 @@ ==================

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR��N��#�#com.macromates.caret{
column = 0;
line = 318;
Mac OS X  2��ATTR��z��$�$com.macromates.caret{
column = 21;
line = 740;
}

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR��R��#�#com.macromates.caret{
Mac OS X  2��ATTR��~��#�#com.macromates.caret{
column = 24;
line = 25;
}

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR��U��#�#com.macromates.caret{
Mac OS X  2��ATTR�����#�#com.macromates.caret{
column = 37;
line = 47;
}

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR��~��#�#com.macromates.caret{
Mac OS X  2��ATTR�����#�#com.macromates.caret{
column = 0;
line = 566;
}

@@ -29,2 +29,3 @@

, 'unit'
, 'for'
, '['

@@ -228,3 +229,15 @@ , ']'

isSelectorToken: function(n) {
return ~selectorTokens.indexOf(this.lookahead(n).type);
var la = this.lookahead(n).type;
switch (la) {
case 'for':
return this.bracketed;
case '[':
this.bracketed = true;
return true;
case ']':
this.bracketed = false;
return true;
default:
return ~selectorTokens.indexOf(la);
}
},

@@ -687,4 +700,3 @@

var i = 2
, la = this.lookahead(i).type
, ident = this._ident;
, la = this.lookahead(i).type;

@@ -731,3 +743,4 @@ while ('space' == la) la = this.lookahead(++i).type;

switch (this.currentState) {
// unary op in property
// unary op or selector in property / for
case 'for':
case 'selector':

@@ -734,0 +747,0 @@ return this.property;

@@ -26,3 +26,3 @@

exports.version = '0.6.3';
exports.version = '0.6.4';

@@ -29,0 +29,0 @@ /**

@@ -1,4 +0,4 @@

Mac OS X  2��ATTR��X��$�$com.macromates.caret{
Mac OS X  2��ATTR�����$�$com.macromates.caret{
column = 40;
line = 334;
}
{ "name": "stylus"
, "description": "Robust, expressive language which compiles to CSS"
, "version": "0.6.3"
, "version": "0.6.4"
, "author": "TJ Holowaychuk <tj@vision-media.ca>"

@@ -5,0 +5,0 @@ , "keywords": ["css", "parser", "style", "stylesheets", "jade", "language"]

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc