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.7.0 to 0.7.1

5

History.md
0.7.1 / 2011-03-07
==================
* Fixed connect middleware for 0.4.x
0.7.0 / 2011-03-02

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

10

lib/middleware.js

@@ -17,4 +17,12 @@

, join = require('path').join
, ENOENT = process.ENOENT;
, ENOENT;
// COMPAT:
try {
ENOENT = require('constants').ENOENT;
} catch (err) {
ENOENT = process.ENOENT;
}
/**

@@ -21,0 +29,0 @@ * Return Connect middleware with the given `options`.

2

lib/stylus.js

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

exports.version = '0.7.0';
exports.version = '0.7.1';

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

{ "name": "stylus"
, "description": "Robust, expressive language which compiles to CSS"
, "version": "0.7.0"
, "version": "0.7.1"
, "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