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
This commit is contained in:
Alex Browne 2018-08-13 14:17:05 -07:00 committed by GitHub
parent cd76c129da
commit 25a8554be1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 1 deletions

View File

@ -92,6 +92,7 @@
"require-from-string": "^2.0.1",
"semver": "5.5.0",
"solc": "^0.4.23",
"source-map-support": "^0.5.0",
"web3-eth-abi": "^1.0.0-beta.24",
"yargs": "^10.0.3"
},

View File

@ -3,6 +3,7 @@
import { logUtils } from '@0xproject/utils';
import * as _ from 'lodash';
import 'source-map-support/register';
import * as yargs from 'yargs';
import { Compiler } from './compiler';

View File

@ -5,6 +5,10 @@
{
"note": "Fix a bug where RelativeFSResolver would crash when trying to read a directory",
"pr": 909
},
{
"note": "Fix a bug where NpmResolver would crash when trying to read a directory",
"pr": 961
}
]
},

View File

@ -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,