From 15bcb8bf18f98867de68822f42ecb19e780fe8df Mon Sep 17 00:00:00 2001 From: Keunbae Park Date: Thu, 27 Aug 2020 13:05:06 -0400 Subject: [PATCH] fix missing return --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 737307b13..73bc641c4 100644 --- a/src/index.js +++ b/src/index.js @@ -53,7 +53,7 @@ function resolveConfigPath(filePath) { // require('tailwindcss')({ config: { theme: ..., variants: ... } }) if (_.isObject(filePath) && _.has(filePath, 'config') && _.isObject(filePath.config)) { - undefined + return undefined } // require('tailwindcss')('custom-config.js')