From f26833c2a3f54b3ac767e9cfcf8d9999c109754f Mon Sep 17 00:00:00 2001 From: Jonathan Reinink Date: Thu, 26 Oct 2017 10:21:13 -0400 Subject: [PATCH] Fix defaultConfig() method (add return) --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index c431ef27d..730c7e891 100644 --- a/src/index.js +++ b/src/index.js @@ -37,7 +37,7 @@ const plugin = postcss.plugin('tailwind', (config) => { }) plugin.defaultConfig = function () { - _.cloneDeep(require('../defaultConfig')) + return _.cloneDeep(require('../defaultConfig')) } module.exports = plugin