Skip to content

Commit

Permalink
Merge pull request #2260 from pkboom/missing-return
Browse files Browse the repository at this point in the history
fix missing return
  • Loading branch information
adamwathan committed Aug 27, 2020
2 parents d62c78b + 15bcb8b commit 0174bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -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')
Expand Down

0 comments on commit 0174bb7

Please sign in to comment.