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