This package is used to easily precompile Stylus files within the Stencil components.
First, npm install within the project:
npm install @stencil/stylus --save-dev
Next, within the project's stencil.config.js
file, import the plugin and add it to the config's plugins
config:
import { Config } from '@stencil/core';
import { stylus } from '@stencil/stylus';
export const config: Config = {
plugins: [
stylus()
]
};
During development, this plugin will kick-in for .styl
and .stylus
style urls, and precompile them to CSS.
The includePaths
config is an array of paths that are used to resolve imports. By default, the plugin adds the project root dir and the current dir of the file to this array. The files should be relative to the root folder.
exports.config = {
plugins: [
stylus({
includePaths: [
'src/globals'
]
})
]
};
The injectGlobalPaths
config is an array of paths that automatically get added as @import
declarations to all components. This can be useful to inject Stylus variables, mixins and functions to override defaults of external collections. Relative paths within injectGlobalPaths
should be relative to the stencil.config.js
file.
exports.config = {
plugins: [
stylus({
injectGlobalPaths: [
'src/globals/variables.styl',
'src/globals/mixins.styl'
]
})
]
};
Note that each of these files are always added to each component, so in most cases they shouldn't contain CSS because it'll get duplicated in each component. Instead, injectGlobalPaths
should only be used for Stylus variables, mixins and functions, but not contain any CSS.
The plugins
config is an array of Stylus plugins.
const axis = require('axis');
const nib = require('nib');
exports.config = {
plugins: [
stylus({
plugins: [
axis(),
nib()
]
})
]
};
Please see our Contributor Code of Conduct for information on our rules of conduct.