From 6e88abfe80ffc904363250a95b5ef8afc15b89b5 Mon Sep 17 00:00:00 2001 From: Henric Trotzig Date: Tue, 3 Jul 2018 09:18:33 +0200 Subject: [PATCH] Add leading dots to `excludes` examples For now at least, the dot is required for the excludes pattern to work correctly. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ad01c1c..a941a601 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ example below. ```javascript module.exports = { excludes: [ - 'react-components/**/test/**' + './react-components/**/test/**' ] // continue with the rest of your settings... } @@ -148,7 +148,7 @@ want to include for importing. ```javascript excludes: [ - 'react-components/**/test/**', + './react-components/**/test/**', ] ```