Sha256: ffefc9a49d6fe26d0ab804a0aa7918ef2debd933148223c8a551f49e7edbf7eb

Contents?: true

Size: 276 Bytes

Versions: 1

Compression:

Stored size: 276 Bytes

Contents

/**
 * Module dependencies.
 */

var stylus = require('../')
  , fs = require('fs')
  , path = 'testing/test.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.4 vendor/testing/index.js