FoundKey/webpack/module/rules/index.ts
syuilo fe98dd927d ✌️
2017-10-07 06:58:50 +09:00

13 lines
270 B
TypeScript

import i18n from './i18n';
import themeColor from './theme-color';
import tag from './tag';
import stylus from './stylus';
import typescript from './typescript';
export default (lang, locale) => [
i18n(lang, locale),
themeColor(),
tag(),
stylus(),
typescript()
];