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 e6d06a0 commit 5ec996fCopy full SHA for 5ec996f
src/cfg-resolve.js
@@ -1,3 +1,4 @@
1
+import path from 'path';
2
import {cosmiconfigSync} from 'cosmiconfig';
3
import toCamelCase from 'to-camel-case';
4
import mergeOptions from 'merge-options';
@@ -19,7 +20,7 @@ export default ({input, flags = {}}) => {
19
20
}
21
22
return mergeOptions(config || {}, {
- input,
23
+ input: input.map(file => path.join(path.resolve(root), file)),
24
output,
25
options,
26
root,
0 commit comments