Sha256: ecd3cd6d90ab9218ebf4c8085eab5fbf197766499e11985186e8d5fb3b02e4a1

Contents?: true

Size: 275 Bytes

Versions: 4

Compression:

Stored size: 275 Bytes

Contents

/**
 * Module dependencies.
 */

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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
stylus-source-0.22.2 vendor/testing/index.js
stylus-source-0.22.1 vendor/testing/index.js
stylus-source-0.21.0 vendor/testing/index.js
stylus-source-0.20.0 vendor/testing/index.js