Sha256: 8e5d96ef511009c7abb3106c287b8c52584df788fcee002e8e41fd1649858f4c

Contents?: true

Size: 278 Bytes

Versions: 1

Compression:

Stored size: 278 Bytes

Contents

/**
 * Module dependencies.
 */

var stylus = require('../')
  , fs = require('fs')
  , path = 'testing/extend.styl'
  , str = fs.readFileSync(path, 'utf8');

stylus(str)
  .set('filename', path)
  .render(function(err, css){
    if (err) throw err;
    console.log(css);
  });

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stylus-source-0.22.3 vendor/testing/index.js