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.3 to 0.12.4

6

History.md
0.12.4 / 2011-05-12
==================
* Added support for underscore in identifiers. Closes #247
* Fixed __@keyframe__ block evaluation. Closes #252
0.12.3 / 2011-05-08

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

4

lib/lexer.js

@@ -512,3 +512,3 @@

/**
* -?[a-zA-Z$] [-\w\d$]*
* -?[_a-zA-Z$] [-\w\d$]*
*/

@@ -518,3 +518,3 @@

var captures;
if (captures = /^(-?[a-zA-Z$][-\w\d$]*)/.exec(this.str)) {
if (captures = /^(-?[_a-zA-Z$][-\w\d$]*)/.exec(this.str)) {
var name = captures[1];

@@ -521,0 +521,0 @@ this.skip(captures);

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

exports.version = '0.12.3';
exports.version = '0.12.4';

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

@@ -184,2 +184,6 @@

keyframes.name = this.visit(keyframes.name).first.name;
keyframes.frames = keyframes.frames.map(function(frame){
frame.block = this.visit(frame.block);
return frame;
}, this);
return keyframes;

@@ -186,0 +190,0 @@ };

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