🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
696 B
JavaScript
Executable File
29 lines
696 B
JavaScript
Executable File
let Preprocessor = require('./Preprocessor');
|
|
|
|
class Stylus extends Preprocessor {
|
|
/**
|
|
* Required dependencies for the component.
|
|
*/
|
|
dependencies() {
|
|
return ['stylus', 'stylus-loader'];
|
|
}
|
|
|
|
/**
|
|
* Register the component.
|
|
*
|
|
* @param {any} src
|
|
* @param {string} output
|
|
* @param {Record<string, any>} pluginOptions
|
|
* @param {import('postcss').AcceptedPlugin[]} postCssPlugins
|
|
*/
|
|
register(src, output, pluginOptions = {}, postCssPlugins = []) {
|
|
return this.preprocess('stylus', src, output, pluginOptions, postCssPlugins);
|
|
}
|
|
|
|
chunkRegex() {
|
|
return /\.(css|styl(us)?)$/;
|
|
}
|
|
}
|
|
|
|
module.exports = Stylus;
|