Skip to content

Commit

Permalink
Merge pull request #11 from valorem-labs-inc/bump
Browse files Browse the repository at this point in the history
v0.0.7
  • Loading branch information
0xAlcibiades authored Dec 22, 2023
2 parents 65a3d51 + 6a03a27 commit 26faaf2
Show file tree
Hide file tree
Showing 15 changed files with 2,167 additions and 617 deletions.
26 changes: 16 additions & 10 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,19 @@ module.exports = {
},
},
},
plugins: ['canonical'],
rules: {
'unicorn/filename-case': 'off',
'import/no-extraneous-dependencies': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'canonical/no-barrel-import': 'error',
'canonical/no-export-all': 'error',
},
ignorePatterns: [
'node_modules/',
'dist/',
Expand All @@ -33,15 +46,8 @@ module.exports = {
'coverage',
'test',
'*.test.ts*',
'package.json',
'buf.gen.yaml',
'buf.work.yaml',
],
rules: {
'unicorn/filename-case': 'off',
'import/no-extraneous-dependencies': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
},
};
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @valorem-labs-inc/react-hooks

## 0.0.7

### Patch Changes

- refactor useStream to make better use of react-query
- decrease SIWE session refetch interval

## 0.0.6

### Patch Changes
Expand Down
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@valorem-labs-inc/react-hooks",
"version": "0.0.6",
"version": "0.0.7",
"repository": {
"type": "git",
"url": "https://github.com/valorem-labs-inc/react-hooks.git"
Expand Down Expand Up @@ -35,16 +35,17 @@
"@tanstack/query-core": "^4.36.1",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^20.10.4",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"@types/react-dom": "^18.2.18",
"@vercel/style-guide": "^5.1.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/coverage-v8": "^1.1.0",
"@wagmi/cli": "^1.5.2",
"@wagmi/core": "^1.4.12",
"abitype": "0.8.7",
"connectkit": "^1.5.3",
"eslint": "^8.55.0",
"eslint": "^8.56.0",
"eslint-config-canonical": "^42.8.0",
"happy-dom": "^12.10.3",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.0.1",
Expand All @@ -55,7 +56,7 @@
"siwe": "^2.1.4",
"typedoc": "^0.25.4",
"typedoc-plugin-missing-exports": "^2.1.0",
"vitest": "^1.0.4"
"vitest": "^1.1.0"
},
"peerDependencies": {
"@bufbuild/buf": "^1.28.1",
Expand All @@ -64,15 +65,15 @@
"@connectrpc/connect-query": "0.5.3",
"@connectrpc/connect-web": "^1.2.0",
"@tanstack/react-query": "^4.36.1",
"@valorem-labs-inc/sdk": "^0.0.9",
"@valorem-labs-inc/sdk": "^0.0.10",
"@wagmi/core": "^1.4.12",
"abitype": "0.8.7",
"connectkit": "^1.5.3",
"react": "17.x || 18.x",
"react-dom": "17.x || 18.x",
"siwe": "^2.1.4",
"typescript": "^5.3.0",
"viem": "^1.19.15",
"viem": "^1.20.3",
"wagmi": "^1.4.12",
"zod": "^3.22.4"
},
Expand All @@ -87,7 +88,8 @@
},
"pnpm": {
"overrides": {
"@wagmi/core": "^1.4.12"
"@wagmi/core": "^1.4.12",
"viem": "^1.20.3"
}
}
}
Loading

0 comments on commit 26faaf2

Please sign in to comment.