edp-provider-rider
edp
的 rider
支持模块。
为 edp-webserver
和 edp-build
提供了预定配置。
集成了 stylus
, rider
, autoprefixer-core
, css-mqpacker
, husl
等依赖。
安装
npm install edp-provider-rider --save-dev
注:使用 edpx-mobile
生成的项目已经内置了 edp-provider-rider
。
配置
先跑起来!
在 edp-webserver-config.js
与 edp-build-config.js
顶部引入:
var epr = require('edp-provider-rider');
exports.stylus = epr.stylus;
var stylusPlugin = epr.plugin();
在 edp-webserver-config.js
对应部分添加:
autostylus({
stylus: epr.stylus,
use: stylusPlugin
})
在 edp-build-config.js
对应部分添加:
new StylusCompiler({
stylus: epr.stylus,
compileOptions: {
use: stylusPlugin
}
})
搞定!
可定制的选项
在定义 stylusPlugin
时,可以向 .plugin()
传入定制参数:
var stylusPlugin = epr.plugin({
implicit: true,
resolveUrl: true,
autoprefixer: ['Android >= 2.3', 'iOS >= 6', 'ExplorerMobile >= 10'],
husl: true,
mqpacker: true,
use: function(style) {}
});
相关
License
MIT © Baidu Inc.