From 3f0aaf1b714eaed333f312ea03d5dddb94980bc2 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Sun, 26 Mar 2017 18:12:47 +0900 Subject: [PATCH 1/2] sync advanced section --- docs/ja/configurations/advanced.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/ja/configurations/advanced.md b/docs/ja/configurations/advanced.md index 6778fcdbb..1bc231248 100644 --- a/docs/ja/configurations/advanced.md +++ b/docs/ja/configurations/advanced.md @@ -46,7 +46,10 @@ module.exports = { // postcss プラグインを使用する方が良い選択になります。 postLoaders: { html: 'babel-loader' - } + }, + + // `excludedPreLoaders` should be regex + excludedPreLoaders: /(eslint-loader)/ } } ] From c3612135690566d90557e95c1cd302b3fc4ac544 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Sun, 26 Mar 2017 18:14:30 +0900 Subject: [PATCH 2/2] translate 'excludedPreLoaders' option --- docs/ja/configurations/advanced.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ja/configurations/advanced.md b/docs/ja/configurations/advanced.md index 1bc231248..6b534b9cc 100644 --- a/docs/ja/configurations/advanced.md +++ b/docs/ja/configurations/advanced.md @@ -48,7 +48,7 @@ module.exports = { html: 'babel-loader' }, - // `excludedPreLoaders` should be regex + // `excludedPreLoaders` は正規表現で設定する必要があります。 excludedPreLoaders: /(eslint-loader)/ } }