From 25a8554be1550e00fba023fd56a3a6e181888e81 Mon Sep 17 00:00:00 2001 From: Alex Browne Date: Mon, 13 Aug 2018 14:17:05 -0700 Subject: fix(sol-compiler, sol-resolver): Bug where sol-resolver tried to read a directory (#961) fix(sol-compiler, sol-resolver): Fix bug where sol-resolver tried to read a directory --- packages/sol-resolver/src/resolvers/npm_resolver.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/sol-resolver/src/resolvers/npm_resolver.ts') diff --git a/packages/sol-resolver/src/resolvers/npm_resolver.ts b/packages/sol-resolver/src/resolvers/npm_resolver.ts index 9f8617145..a2df0dcad 100644 --- a/packages/sol-resolver/src/resolvers/npm_resolver.ts +++ b/packages/sol-resolver/src/resolvers/npm_resolver.ts @@ -19,7 +19,7 @@ export class NPMResolver extends Resolver { const ROOT_PATH = '/'; while (currentPath !== ROOT_PATH) { const lookupPath = path.join(currentPath, 'node_modules', packageName, pathWithinPackage); - if (fs.existsSync(lookupPath)) { + if (fs.existsSync(lookupPath) && fs.lstatSync(lookupPath).isFile()) { const fileContent = fs.readFileSync(lookupPath).toString(); return { source: fileContent, -- cgit v1.2.3