2017-05-17 00:00:56 +09:00
|
|
|
import i18n from './i18n';
|
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
|
|
|
|
|
|
|
export default (lang, locale) => [
|
|
|
|
i18n(lang, locale),
|
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
|
|
|
];
|