egirlskey/webpack/module/rules/index.ts

12 lines
216 B
TypeScript
Raw Normal View History

2017-05-16 15:00:56 +00:00
import i18n from './i18n';
import themeColor from './theme-color';
import tag from './tag';
import stylus from './stylus';
export default (lang, locale) => [
i18n(lang, locale),
themeColor(),
tag(),
stylus()
];