fix orderings

This commit is contained in:
Fabio Berger
2017-11-13 18:12:01 -05:00
parent 087ea1f068
commit abb2ad45ce
2 changed files with 3 additions and 3 deletions

View File

@@ -87,6 +87,7 @@
"webpack": "^3.1.0"
},
"dependencies": {
"@0xproject/assert": "0.0.3",
"0x-json-schemas": "^0.6.1",
"bignumber.js": "~4.1.0",
"compare-versions": "^3.0.1",
@@ -99,7 +100,6 @@
"lodash": "^4.17.4",
"publish-release": "^1.3.3",
"uuid": "^3.1.0",
"web3": "^0.20.0",
"@0xproject/assert": "0.0.3"
"web3": "^0.20.0"
}
}

View File

@@ -2,10 +2,10 @@ import * as _ from 'lodash';
import * as Web3 from 'web3';
import BigNumber from 'bignumber.js';
import {SchemaValidator, Schema} from '0x-json-schemas';
import {assert as sharedAssert} from '@0xproject/assert';
import {Web3Wrapper} from '../web3_wrapper';
import {signatureUtils} from '../utils/signature_utils';
import {ECSignature} from '../types';
import {assert as sharedAssert} from '@0xproject/assert';
const HEX_REGEX = /^0x[0-9A-F]*$/i;