Skip to content

Commit

Permalink
fix: remove lodash dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsan-javaid authored and reedrosenbluth committed Jan 18, 2022
1 parent fe831cf commit 96b3064
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/transactions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.160",
"@types/lodash.clonedeep": "^4.5.6",
"common-tags": "^1.8.0",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
Expand All @@ -51,7 +51,7 @@
"c32check": "^1.1.3",
"cross-fetch": "^3.1.4",
"elliptic": "^6.5.4",
"lodash": "^4.17.20",
"lodash.clonedeep": "^4.5.0",
"randombytes": "^2.1.0",
"ripemd160-min": "^0.0.6",
"sha.js": "^2.4.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/transactions/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import randombytes from 'randombytes';
import { deserializeCV } from './clarity';
import fetch from 'cross-fetch';
import { c32addressDecode } from 'c32check';
import lodashCloneDeep from 'lodash/cloneDeep';
import lodashCloneDeep from 'lodash.clonedeep';
import { with0x } from '@stacks/common';

export { randombytes as randomBytes };
Expand Down

0 comments on commit 96b3064

Please sign in to comment.