From b2921d1d63032da5328bb257a58bd642c582afd5 Mon Sep 17 00:00:00 2001 From: Jacopo Marrone Date: Sat, 27 Jan 2024 13:21:05 +0100 Subject: [PATCH] fix: correct typo that prevent "lodash.merge" to be imported --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 042bb5a..8ce40f3 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,7 @@ const plugin = require('tailwindcss/plugin') const textSizes = require('./lib/textSizes') const fluidSpacing = require('./lib/fluidSpacing') const classes = require('./util/spacingClasses') -const merge = require('lodash/merge'); +const merge = require('lodash.merge'); module.exports = plugin.withOptions( function(options) { return function( { addBase, addUtilities, e, theme } ) {