fis3-parser-preprocessor
v0.0.7
Published
处理html ,css ,js中根据注释条件来生成可运行的代码, 类似 gulp-preprocess, 适合要区分不同环境的情况,比如线上线下,多语言国际化等
Downloads
9
Readme
fis配置使用方法
fis.match('{*.html,*.css,*.js}', {
parser: [fis.plugin('preprocessor', {
context: {
system: lang
},
options: {
}
})]
})
- 具体api请查看preprocess
代码里边用法
html中
<!--@if system='cn' --> 或者 <!--@if system!='cn' -->
<!--@endif-->
js中
//@if system='cn' 或者 //@if system!='cn'
//@endif
css中
/* @if system='cn' */ 或者 /* @if system!='cn' */
/* @endif */