Skip to content

Commit 9863723

Browse files
committed
style: lint changes
1 parent 1411370 commit 9863723

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib/purgeUnusedStyles.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ function removeTailwindComments(css) {
2020
}
2121

2222
export default function purgeUnusedUtilities(config) {
23-
const purgeEnabled = _.get(config, 'purge.enabled', config.purge !== undefined && process.env.NODE_ENV === 'production')
23+
const purgeEnabled = _.get(
24+
config,
25+
'purge.enabled',
26+
config.purge !== undefined && process.env.NODE_ENV === 'production'
27+
)
2428

2529
if (!purgeEnabled) {
2630
return removeTailwindComments

0 commit comments

Comments
 (0)