diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-22 06:58:06 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-22 06:58:06 +0800 |
commit | 301cb296ec77e8af5c1722679e04cb983c848153 (patch) | |
tree | c4f3c94c2f76e47d7b12d3761af57c15819c9cc2 /packages/sol-compiler/src/compiler.ts | |
parent | 1bbd7bf870730dfe2146819e3740522990eb83ca (diff) | |
download | dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar.gz dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar.bz2 dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar.lz dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar.xz dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar.zst dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.zip |
Move types from sol-compiler to types so they can be used in other places without requiring sol-compiler as a dep
Diffstat (limited to 'packages/sol-compiler/src/compiler.ts')
-rw-r--r-- | packages/sol-compiler/src/compiler.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sol-compiler/src/compiler.ts b/packages/sol-compiler/src/compiler.ts index 2503f7315..eb4ff3be6 100644 --- a/packages/sol-compiler/src/compiler.ts +++ b/packages/sol-compiler/src/compiler.ts @@ -10,6 +10,7 @@ import { } from '@0xproject/sol-resolver'; import { fetchAsync, logUtils } from '@0xproject/utils'; import chalk from 'chalk'; +import { CompilerOptions, ContractArtifact, ContractVersionData } from 'ethereum-types'; import * as ethUtil from 'ethereumjs-util'; import * as fs from 'fs'; import * as _ from 'lodash'; @@ -29,7 +30,6 @@ import { } from './utils/compiler'; import { constants } from './utils/constants'; import { fsWrapper } from './utils/fs_wrapper'; -import { CompilerOptions, ContractArtifact, ContractVersionData } from './utils/types'; import { utils } from './utils/utils'; type TYPE_ALL_FILES_IDENTIFIER = '*'; |