fix: non-strict dependency resolution

This commit is contained in:
calebboyd
2018-02-08 08:31:11 -06:00
committed by Caleb Boyd
parent 92058b6137
commit b61c0df51d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ function makeRelative(cwd: string, path: string) {
let producer = async function(compiler: NexeCompiler) {
const { cwd, input } = compiler.options
const { files } = await resolveFiles({ entries: [compiler.options.input], cwd })
const { files } = await resolveFiles({ entries: [compiler.options.input], cwd, strict: false })
Object.keys(files).forEach(x => {
const file = files[x]!
if (file) {