Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

stylus

Package Overview
Dependencies
Maintainers
0
Versions
183
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.0 to 0.6.2

._Readme.md

4

._History.md

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

Mac OS X  2��ATTRl�"��"�"com.macromates.caret{
Mac OS X  2��ATTR�����!�!com.macromates.caret{
column = 0;
line = 12;
line = 9;
}

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

Mac OS X  2��ATTRl�(��"�"com.macromates.caret{
Mac OS X  2��ATTR�����"�"com.macromates.caret{
column = 21;
line = 2;
}
0.6.2 / 2011-02-21
==================
* Added stylus(1) growl support when using `--watch`
* Added __@import__ watching support to stylus(1). Closes #134
* Changed; stylus(1) only throws when `--watch` is not used
* Fixed `darken-by()` BIF
* Fixed __@import__ literal semi-colon. Closes #140
0.6.1 / 2011-02-18
==================
* Fixed evaluation of nodes after a return. Closes #139
0.6.0 / 2011-02-18

@@ -3,0 +17,0 @@ ==================

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

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

@@ -570,3 +570,3 @@

, hsl.s
, hsl.l * amount.val / 100
, hsl.l - hsl.l * amount.val / 100
, hsl.a);

@@ -573,0 +573,0 @@ };

@@ -24,2 +24,3 @@

this.path = path;
this.literal = !! ~path.indexOf('.css');
};

@@ -26,0 +27,0 @@

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

exports.version = '0.6.0';
exports.version = '0.6.2';

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

@@ -335,3 +335,3 @@

Compiler.prototype.visitImport = function(import){
return '@import "' + import.path + '"';
return '@import "' + import.path + '";';
};

@@ -338,0 +338,0 @@

@@ -146,3 +146,3 @@

ret.expr = this.visit(ret.expr);
return ret;
throw ret;
};

@@ -404,3 +404,12 @@

block.index = i;
block.nodes[i] = this.visit(block.nodes[i]);
try {
block.nodes[i] = this.visit(block.nodes[i]);
} catch (err) {
if (err instanceof nodes.Return) {
block.nodes[i] = err;
break;
} else {
throw err;
}
}
}

@@ -407,0 +416,0 @@ if (block.scope) this.stack.pop();

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

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

, "dependencies": {
"cssom": ">= 0.2.0"
"cssom": "0.2.0"
, "growl": "1.0.2"
}
}

@@ -83,2 +83,3 @@

- [Stylus Intro](http://screenr.com/bNY)
- [CSS Syntax & Postfix Conditionals](http://screenr.com/A8v)

@@ -85,0 +86,0 @@ ### Authors

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

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