From a650d695cede55c61aeb3a24dade828f6cc57844 Mon Sep 17 00:00:00 2001 From: Alex Browne Date: Tue, 18 Dec 2018 16:26:10 -0800 Subject: Fix test-publish failure in contracts packages --- contracts/multisig/src/index.ts | 2 ++ contracts/protocol/src/index.ts | 1 - contracts/protocol/test/exchange/order_validator.ts | 5 ++--- 3 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 contracts/multisig/src/index.ts (limited to 'contracts') diff --git a/contracts/multisig/src/index.ts b/contracts/multisig/src/index.ts new file mode 100644 index 000000000..d55f08ea2 --- /dev/null +++ b/contracts/multisig/src/index.ts @@ -0,0 +1,2 @@ +export * from './artifacts'; +export * from './wrappers'; diff --git a/contracts/protocol/src/index.ts b/contracts/protocol/src/index.ts index ba813e7ca..d55f08ea2 100644 --- a/contracts/protocol/src/index.ts +++ b/contracts/protocol/src/index.ts @@ -1,3 +1,2 @@ export * from './artifacts'; export * from './wrappers'; -export * from '../test/utils'; diff --git a/contracts/protocol/test/exchange/order_validator.ts b/contracts/protocol/test/exchange/order_validator.ts index 8f53426db..39b173fdd 100644 --- a/contracts/protocol/test/exchange/order_validator.ts +++ b/contracts/protocol/test/exchange/order_validator.ts @@ -18,14 +18,13 @@ import * as _ from 'lodash'; import { artifacts, ERC20ProxyContract, - ERC20Wrapper, ERC721ProxyContract, - ERC721Wrapper, ExchangeContract, - ExchangeWrapper, OrderValidatorContract, } from '../../src'; +import { ERC20Wrapper, ERC721Wrapper, ExchangeWrapper } from '../utils'; + chaiSetup.configure(); const expect = chai.expect; const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper); -- cgit