diff options
Diffstat (limited to 'packages/sol-resolver/src/resolvers/fs_resolver.ts')
-rw-r--r-- | packages/sol-resolver/src/resolvers/fs_resolver.ts | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/packages/sol-resolver/src/resolvers/fs_resolver.ts b/packages/sol-resolver/src/resolvers/fs_resolver.ts deleted file mode 100644 index 248fa405e..000000000 --- a/packages/sol-resolver/src/resolvers/fs_resolver.ts +++ /dev/null @@ -1,18 +0,0 @@ -import * as fs from 'fs'; -import * as path from 'path'; - -import { ContractSource } from '../types'; - -import { Resolver } from './resolver'; - -export class FSResolver extends Resolver { - // tslint:disable-next-line:prefer-function-over-method - public resolveIfExists(importPath: string): ContractSource | undefined { - if (fs.existsSync(importPath) && fs.lstatSync(importPath).isFile()) { - const fileContent = fs.readFileSync(importPath).toString(); - const absolutePath = path.resolve(importPath); - return { source: fileContent, path: importPath, absolutePath } as any; - } - return undefined; - } -} |