summaryrefslogtreecommitdiff
path: root/webpack/module/rules/index.ts
blob: 093f07330b6faed6f060cf85ef09a591cbddce7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import i18n from './i18n';
import license from './license';
import fa from './fa';
import base64 from './base64';
import themeColor from './theme-color';
import vue from './vue';
import stylus from './stylus';
import typescript from './typescript';

export default lang => [
	i18n(lang),
	license(),
	fa(),
	base64(),
	themeColor(),
	vue(),
	stylus(),
	typescript()
];