diff options
author | Fabio Berger <me@fabioberger.com> | 2018-03-04 22:21:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-04 22:21:32 +0800 |
commit | 42f4f0726864d425266a72607592207e81dc2696 (patch) | |
tree | 2765a9fd93a4ae3c988f23979c20c63506275288 /packages/utils | |
parent | 4445d1d5a0f5d5fa263d7a063519a9a9bca1ec94 (diff) | |
parent | 3ab613952222eb24bbabb551ac9928e212c3e90d (diff) | |
download | dexon-sol-tools-42f4f0726864d425266a72607592207e81dc2696.tar dexon-sol-tools-42f4f0726864d425266a72607592207e81dc2696.tar.gz dexon-sol-tools-42f4f0726864d425266a72607592207e81dc2696.tar.bz2 dexon-sol-tools-42f4f0726864d425266a72607592207e81dc2696.tar.lz dexon-sol-tools-42f4f0726864d425266a72607592207e81dc2696.tar.xz dexon-sol-tools-42f4f0726864d425266a72607592207e81dc2696.tar.zst dexon-sol-tools-42f4f0726864d425266a72607592207e81dc2696.zip |
Merge pull request #429 from 0xProject/fix/incorrectDeps
Move required typing from devDeps to deps
Diffstat (limited to 'packages/utils')
-rw-r--r-- | packages/utils/CHANGELOG.md | 1 | ||||
-rw-r--r-- | packages/utils/package.json | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 81792bee8..b19656ed7 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,7 @@ ## v0.4.0 - _TBD, 2018_ * Use `ethers-contracts` as a backend to decode event args (#413) + * Move web3 types from devDep to dep since required when using this package (#429) ## v0.3.2 - _February 9, 2018_ diff --git a/packages/utils/package.json b/packages/utils/package.json index 8b6dbc825..33890f15b 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -25,16 +25,16 @@ "npm-run-all": "^4.1.2", "shx": "^0.2.2", "tslint": "5.8.0", - "typescript": "2.7.1", - "ethers-typescript-typings": "^0.0.1", - "web3-typescript-typings": "^0.9.11" + "typescript": "2.7.1" }, "dependencies": { "@0xproject/types": "^0.2.3", "bignumber.js": "~4.1.0", "ethers-contracts": "^2.2.1", + "ethers-typescript-typings": "^0.0.1", "js-sha3": "^0.7.0", "lodash": "^4.17.4", - "web3": "^0.20.0" + "web3": "^0.20.0", + "web3-typescript-typings": "^0.9.11" } } |