From fb70e3b1769e9d008b75585e7c3fdfa061491f4d Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 17 May 2017 00:00:56 +0900 Subject: Refactoring --- webpack/module/rules/index.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 webpack/module/rules/index.ts (limited to 'webpack/module/rules/index.ts') diff --git a/webpack/module/rules/index.ts b/webpack/module/rules/index.ts new file mode 100644 index 0000000000..2308f4e535 --- /dev/null +++ b/webpack/module/rules/index.ts @@ -0,0 +1,11 @@ +import i18n from './i18n'; +import themeColor from './theme-color'; +import tag from './tag'; +import stylus from './stylus'; + +export default (lang, locale) => [ + i18n(lang, locale), + themeColor(), + tag(), + stylus() +]; -- cgit v1.2.3-freya