2017-05-16 10:00:56 -05:00
|
|
|
import i18n from './i18n';
|
2017-12-07 11:44:50 -06:00
|
|
|
import fa from './fa';
|
2017-10-22 00:11:28 -05:00
|
|
|
import base64 from './base64';
|
2017-05-16 10:00:56 -05:00
|
|
|
import themeColor from './theme-color';
|
|
|
|
import tag from './tag';
|
|
|
|
import stylus from './stylus';
|
2017-10-06 16:58:50 -05:00
|
|
|
import typescript from './typescript';
|
2017-05-16 10:00:56 -05:00
|
|
|
|
|
|
|
export default (lang, locale) => [
|
|
|
|
i18n(lang, locale),
|
2017-12-07 11:44:50 -06:00
|
|
|
fa(),
|
2017-10-22 00:11:28 -05:00
|
|
|
base64(),
|
2017-05-16 10:00:56 -05:00
|
|
|
themeColor(),
|
|
|
|
tag(),
|
2017-10-06 16:58:50 -05:00
|
|
|
stylus(),
|
|
|
|
typescript()
|
2017-05-16 10:00:56 -05:00
|
|
|
];
|