fis3-parser-stylus
v0.1.3
Published
A parser for fis3 to compile stylus files.
Readme
fis3-parser-stylus
A parser for fis3 to compile stylus files.
How to use
Install
npm install fis3-parser-stylus -gAdd configure to fis-conf.js
fis.match('*.styl', {
parser: 'stylus',
rExt: '.css'
});Custom parse options:
fis.match('*.styl', {
parser: fis.plugin('stylus', {
sourcemap: true
}),
rExt: '.css'
});Available options, please refer to stylus.
