yumechi-no-kuni/webpack/module/rules/index.ts

20 lines
369 B
TypeScript
Raw Normal View History

2017-05-16 10:00:56 -05:00
import i18n from './i18n';
2017-12-10 12:38:31 -06:00
import license from './license';
2017-12-07 11:44:50 -06:00
import fa from './fa';
import base64 from './base64';
2017-05-16 10:00:56 -05:00
import themeColor from './theme-color';
2018-02-09 19:27:05 -06:00
import vue from './vue';
2017-05-16 10:00:56 -05:00
import stylus from './stylus';
2017-10-06 16:58:50 -05:00
import typescript from './typescript';
2017-05-16 10:00:56 -05:00
2017-12-16 23:35:30 -06:00
export default lang => [
i18n(lang),
2017-12-10 12:38:31 -06:00
license(),
2017-12-07 11:44:50 -06:00
fa(),
base64(),
2017-05-16 10:00:56 -05:00
themeColor(),
2018-02-09 19:27:05 -06:00
vue(),
2017-10-06 16:58:50 -05:00
stylus(),
typescript()
2017-05-16 10:00:56 -05:00
];