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