Unpin types version in @0xproject/connect

This commit is contained in:
Leonid Logvinov 2018-05-24 14:40:53 -07:00
parent 6d3fbbe256
commit fd6ce470e7
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
3 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@
"dependencies": { "dependencies": {
"@0xproject/assert": "^0.2.10", "@0xproject/assert": "^0.2.10",
"@0xproject/json-schemas": "0.7.22", "@0xproject/json-schemas": "0.7.22",
"@0xproject/types": "0.7.0", "@0xproject/types": "^0.7.0",
"@0xproject/typescript-typings": "^0.3.2", "@0xproject/typescript-typings": "^0.3.2",
"@0xproject/utils": "^0.6.2", "@0xproject/utils": "^0.6.2",
"isomorphic-fetch": "^2.2.1", "isomorphic-fetch": "^2.2.1",

View File

@ -17,4 +17,4 @@ export {
WebSocketOrderbookChannelConfig, WebSocketOrderbookChannelConfig,
} from './types'; } from './types';
export { ECSignature, Order, SignedOrder } from '@0xproject/types'; export { Order, SignedOrder } from '@0xproject/types';

View File

@ -1,4 +1,4 @@
import { ECSignature, Order, SignedOrder } from '@0xproject/types'; import { Order, SignedOrder } from '@0xproject/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0xproject/utils';
export interface Client { export interface Client {