summaryrefslogtreecommitdiff
path: root/webpack/module/rules/index.ts
blob: 79740ce48e2e44edd44b64a36f17a2ff1f5019ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import i18n from './i18n';
import fa from './fa';
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),
	fa(),
	base64(),
	themeColor(),
	tag(),
	stylus(),
	typescript()
];