We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27d39ba commit 144a101Copy full SHA for 144a101
src/cfg-resolve.js
@@ -20,7 +20,7 @@ export default ({input, flags = {}}) => {
20
}
21
22
return mergeOptions(config || {}, {
23
- input: input.map(file => path.join(path.resolve(root), file)),
+ input: [].concat(input).map(file => path.join(path.resolve(root), file)),
24
output,
25
options,
26
root,
0 commit comments