cube-lazy-parse

optmize cube wrap

Usage no npm install needed!

<script type="module">
  import cubeLazyParse from 'https://cdn.skypack.dev/cube-lazy-parse';
</script>

README

install

npm install cube-less

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;