Stylus to CSS transformer for James.js.
var james = require('james'),
stylus = require('james-stylus');
james.task('default', function() {
james.files('src/**/*.styl').forEach(function(file) {
james.read(file)
.transform(stylus({filename: file}))
.write(process.stdout);
});
});
stylus(options)
: Return a new Stylus to CSS transformer. Available options are listed in
Stylus documentation.