Sharkey/webpack/module/rules/index.ts

18 lines
342 B
TypeScript
Raw Normal View History

2017-05-16 18:00:56 +03:00
import i18n from './i18n';
2017-12-07 19:44:50 +02:00
import fa from './fa';
import base64 from './base64';
2017-05-16 18:00:56 +03:00
import themeColor from './theme-color';
import tag from './tag';
import stylus from './stylus';
2017-10-07 00:58:50 +03:00
import typescript from './typescript';
2017-05-16 18:00:56 +03:00
export default (lang, locale) => [
i18n(lang, locale),
2017-12-07 19:44:50 +02:00
fa(),
base64(),
2017-05-16 18:00:56 +03:00
themeColor(),
tag(),
2017-10-07 00:58:50 +03:00
stylus(),
typescript()
2017-05-16 18:00:56 +03:00
];