38 lines
811 B
JavaScript
Vendored
38 lines
811 B
JavaScript
Vendored
let Preprocessor = require('./Preprocessor');
|
|
|
|
class Stylus extends Preprocessor {
|
|
/**
|
|
* Required dependencies for the component.
|
|
*/
|
|
dependencies() {
|
|
return ['stylus', 'stylus-loader'];
|
|
}
|
|
|
|
/**
|
|
* Register the component.
|
|
*
|
|
* @param {*} src
|
|
* @param {string} output
|
|
* @param {Object} pluginOptions
|
|
* @param {Array} postCssPlugins
|
|
*/
|
|
register(src, output, pluginOptions = {}, postCssPlugins = []) {
|
|
pluginOptions = Object.assign(
|
|
{
|
|
preferPathResolver: 'webpack'
|
|
},
|
|
pluginOptions
|
|
);
|
|
|
|
return this.preprocess(
|
|
'stylus',
|
|
src,
|
|
output,
|
|
pluginOptions,
|
|
postCssPlugins
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = Stylus;
|