stylus-source 0.19.7 → 0.19.8

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.19.7
1
+ 0.19.8
data/vendor/History.md CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ 0.19.8 / 2011-12-01
3
+ ==================
4
+
5
+ * Fixed middleware `mkdir -p` support
6
+
2
7
  0.19.7 / 2011-11-30
3
8
  ==================
4
9
 
@@ -12,6 +12,7 @@ var stylus = require('./stylus')
12
12
  , fs = require('fs')
13
13
  , url = require('url')
14
14
  , basename = require('path').basename
15
+ , dirname = require('path').dirname
15
16
  , mkdirp = require('mkdirp')
16
17
  , join = require('path').join;
17
18
 
@@ -140,7 +141,7 @@ module.exports = function(options){
140
141
  if (err) return next(err);
141
142
  if (debug) log('render', stylusPath);
142
143
  imports[stylusPath] = paths;
143
- mkdirp(dest, 0700, function(err){
144
+ mkdirp(dirname(cssPath), 0700, function(err){
144
145
  if (err) return error(err);
145
146
  fs.writeFile(cssPath, css, 'utf8', next);
146
147
  });
data/vendor/lib/stylus.js CHANGED
@@ -24,7 +24,7 @@ exports = module.exports = render;
24
24
  * Library version.
25
25
  */
26
26
 
27
- exports.version = '0.19.7';
27
+ exports.version = '0.19.8';
28
28
 
29
29
  /**
30
30
  * Expose nodes.
data/vendor/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  { "name": "stylus"
2
2
  , "description": "Robust, expressive, and feature-rich CSS superset"
3
- , "version": "0.19.7"
3
+ , "version": "0.19.8"
4
4
  , "author": "TJ Holowaychuk <tj@vision-media.ca>"
5
5
  , "keywords": ["css", "parser", "style", "stylesheets", "jade", "language"]
6
6
  , "repository": "git://github.com/learnboost/stylus"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stylus-source
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.7
4
+ version: 0.19.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: