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