Skip to content

Commit

Permalink
updated dependecies to work with sdk47
Browse files Browse the repository at this point in the history
  • Loading branch information
swelf19 committed Jul 5, 2023
1 parent 7dc4d71 commit d8accc2
Show file tree
Hide file tree
Showing 23 changed files with 682 additions and 193 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
branches:
- '**'
- "**"

name: tests

Expand All @@ -17,7 +17,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '14'
cache: 'yarn'
node-version: "16"
cache: "yarn"
- name: Lint
run: yarn && yarn lint
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const config = {
statements: 95,
},
},
setupFilesAfterEnv: ['jest-extended/all'],
setupFilesAfterEnv: ['jest-extended/all', './src/helpers/console.ts'],
transform: {
'^.+\\.[t|j]sx?$': 'babel-jest',
},
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@cosmos-client/core": "0.45.13",
"@cosmos-client/cosmwasm": "^0.20.1",
"@cosmos-client/core": "^0.47.1",
"@cosmos-client/cosmwasm": "^0.40.1",
"@cosmos-client/ibc": "^1.2.1",
"@types/lodash": "^4.14.182",
"@types/long": "^4.0.2",
Expand Down Expand Up @@ -82,4 +82,4 @@
"engines": {
"node": ">=11.0 <17"
}
}
}
2 changes: 2 additions & 0 deletions src/helpers/console.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import console from 'console';
global.console = console;
Loading

0 comments on commit d8accc2

Please sign in to comment.