Skip to content

Commit

Permalink
fix: symlink local dep even when target dir does not exist
Browse files Browse the repository at this point in the history
close #5219
  • Loading branch information
zkochan committed Aug 23, 2022
1 parent 2aa22e4 commit b96af41
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -50,7 +50,7 @@ export default async function symlinkDirectRootDependency (
} catch (err: any) { // eslint-disable-line
if (err.code !== 'ENOENT') throw err
globalWarn(`Local dependency not found at ${dependencyLocation}`)
return
dependencyRealLocation = dependencyLocation
}

const dest = path.join(destModulesDirReal, importAs)
Expand Down

0 comments on commit b96af41

Please sign in to comment.