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.11.2 to 0.11.3

7

History.md
0.11.3 / 2011-04-08
==================
* Fixed; keyword args previously not evaluated
* Fixed; subpixel support
* Fixed bug preventing combinators (and other ops) in __@media__ blocks. Closes #216 [reported by jsteenkamp]
0.11.2 / 2011-04-06

@@ -3,0 +10,0 @@ ==================

1

lib/parser.js

@@ -778,2 +778,3 @@

case 'root':
case 'media':
return this.selector();

@@ -780,0 +781,0 @@ // Do not disrupt the ident when an operand

3

lib/stylus.js

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

exports.version = '0.11.2';
exports.version = '0.11.3';

@@ -57,2 +57,3 @@ /**

exports.Visitor = require('./visitor');
exports.Parser = require('./parser');

@@ -59,0 +60,0 @@ exports.Evaluator = require('./visitor/evaluator');

@@ -219,4 +219,2 @@

// Int
if ('px' == type) n = n.toFixed(0);
// Compress

@@ -223,0 +221,0 @@ if (this.compress) {

@@ -253,2 +253,5 @@

var args = this.visit(call.args);
for (var key in call.args.map) {
call.args.map[key] = this.visit(call.args.map[key]);
}
this.return = _;

@@ -255,0 +258,0 @@

{ "name": "stylus"
, "description": "Robust, expressive language which compiles to CSS"
, "version": "0.11.2"
, "version": "0.11.3"
, "author": "TJ Holowaychuk <tj@vision-media.ca>"

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

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