Skip to content

Commit

Permalink
resolve deps in package file
Browse files Browse the repository at this point in the history
  • Loading branch information
Zetazzz committed Aug 15, 2023
1 parent b371081 commit 1b168ca
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"@cosmology/utils": "^0.13.0",
"case": "1.6.3"
}
}
3 changes: 1 addition & 2 deletions packages/types/src/telescope.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { TSBuilderInput } from '@cosmwasm/ts-codegen';
import { AminoExceptions, DEFAULT_AMINO_EXCEPTIONS } from "./aminos";
import { snake } from 'case';
import { camel } from '@cosmology/utils';
import { snake, camel } from 'case';

export enum TelescopeLogLevel {
None = 0,
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"@cosmology/utils": "^0.13.0",
"@cosmology/types": "^0.38.0",
"dotty": "0.1.2"
}
}
2 changes: 1 addition & 1 deletion packages/utils/src/amino.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getPluginValue } from "@cosmology/utils";
import { getPluginValue } from ".";
import {
DEFAULT_AMINO_EXCEPTIONS,
ProtoAny,
Expand Down

0 comments on commit 1b168ca

Please sign in to comment.