We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ad0c33 commit 4540719Copy full SHA for 4540719
1 file changed
src/cfg-resolve.js
@@ -27,7 +27,7 @@ export default ({input, flags = {}}) => {
27
}
28
29
input = []
30
- .concat(input.length > 0 ? input : config?.input)
+ .concat(input && input.length > 0 ? input : config?.input)
31
.filter(Boolean)
32
.map(file => path.join(path.resolve(root), file));
33
0 commit comments