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.12.1 to 0.12.2

6

History.md
0.12.2 / 2011-05-03
==================
* Fixed issue with `^=` attr selector causing infinite loop. Closes #244
* Fixed multiple occurrences of `&` in selectors. Closes #243
0.12.1 / 2011-04-29

@@ -3,0 +9,0 @@ ==================

3

lib/parser.js

@@ -801,3 +801,4 @@

if (this._ident == this.peek()) return this.id();
while (']' != this.lookahead(i++).type) ;
while (']' != this.lookahead(i++).type
&& 'selector' != this.lookahead(i).type) ;
if ('=' == this.lookahead(i).type) {

@@ -804,0 +805,0 @@ this._ident = this.peek();

@@ -27,3 +27,3 @@

exports.version = '0.12.1';
exports.version = '0.12.2';

@@ -30,0 +30,0 @@ /**

@@ -280,3 +280,3 @@

if (~buf[i].indexOf('&')) {
str = buf[i].replace('&', str).trim();
str = buf[i].replace(/&/g, str).trim();
} else {

@@ -283,0 +283,0 @@ str += ' ' + buf[i].trim();

{ "name": "stylus"
, "description": "Robust, expressive, and feature-rich CSS superset"
, "version": "0.12.1"
, "version": "0.12.2"
, "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