cube-stylus

2.0.0 • Public • Published

install

npm install cube-stylus

write a processor

function Processor(cube) {
  this.cube = cube;
}
 
Processor.info = {
  type: 'style',  //  can be: style|script|template
  ext: '.less'    //  file ext, let cube know which file request should router to this processor
}
 
/**
 * process code
 * @param  {String}   file     file path, relative to options.root
 * @param  {Object}   options   {root, compress, moduleWrap, qpath}
 * @param  {Function} callback(err, res)
 *                    res {source, code, wraped}
 */
Processor.prototype.process = function (file, options, callback) {
  // your code here
}
 
module.exports = Processor;

Readme

Keywords

none

Package Sidebar

Install

npm i cube-stylus

Weekly Downloads

2

Version

2.0.0

License

none

Last publish

Collaborators

  • fish