mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
3f8ebac466
Closes #940
18 lines
358 B
TypeScript
18 lines
358 B
TypeScript
import i18n from './i18n';
|
|
import consts from './consts';
|
|
import base64 from './base64';
|
|
import themeColor from './theme-color';
|
|
import tag from './tag';
|
|
import stylus from './stylus';
|
|
import typescript from './typescript';
|
|
|
|
export default (lang, locale) => [
|
|
i18n(lang, locale),
|
|
consts(lang),
|
|
base64(),
|
|
themeColor(),
|
|
tag(),
|
|
stylus(),
|
|
typescript()
|
|
];
|