blob: 2c0a44aadc6fb1b25f6352dd327c05792f3823bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
import * as fs from 'fs';
import * as path from 'path';
import { ContractSource } from '../types';
import { Resolver } from './resolver';
export class NPMResolver extends Resolver {
private _packagePath: string;
constructor(packagePath: string) {
super();
this._packagePath = packagePath;
}
public resolveIfExists(importPath: string): ContractSource | undefined {
if (!importPath.startsWith('/')) {
const [packageName, ...other] = importPath.split('/');
const pathWithinPackage = path.join(...other);
let currentPath = this._packagePath;
const ROOT_PATH = '/';
while (currentPath !== ROOT_PATH) {
const lookupPath = path.join(currentPath, 'node_modules', packageName, pathWithinPackage);
if (fs.existsSync(lookupPath)) {
const fileContent = fs.readFileSync(lookupPath).toString();
return {
source: fileContent,
path: lookupPath,
};
}
currentPath = path.dirname(currentPath);
}
}
return undefined;
}
}
|