From b3fef941b6515870d8bd039a75748d91a5564b69 Mon Sep 17 00:00:00 2001 From: Brad Cornes Date: Thu, 27 Aug 2020 12:16:42 +0100 Subject: [PATCH] Suppress glob errors (#174) --- src/class-names/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/class-names/index.js b/src/class-names/index.js index 5951029..773faee 100644 --- a/src/class-names/index.js +++ b/src/class-names/index.js @@ -43,6 +43,7 @@ export default async function getClassNames( ignore: ['**/node_modules'], onlyFiles: true, absolute: true, + suppressErrors: true, }) ) .map(normalizePath)