Skip to content

Commit

Permalink
Merge pull request #5 from valorem-labs-inc/solve-peer-deps
Browse files Browse the repository at this point in the history
fix: peer deps
  • Loading branch information
albertocevallos authored Nov 30, 2023
2 parents e85367c + 13fd3dd commit 0957cb1
Show file tree
Hide file tree
Showing 8 changed files with 947 additions and 1,098 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ on:
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
CR_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- name: Checkout repo
Expand Down
8 changes: 8 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
auto-install-peers=true
strict-peer-dependencies=false
dedupe-peer-dependents=true
shared-workspace-lockfile=false
prefer-workspace-packages=true

//npm.pkg.github.com/:_authToken=${CR_PAT}
@valorem-labs-inc:registry=https://npm.pkg.github.com
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.4

### Patch Changes

- fix: infinite re-render
- fix: peer dependencies

## 0.0.3

### Patch Changes
Expand Down
51 changes: 26 additions & 25 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.3",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "https://github.com/valorem-labs-inc/react-hooks.git"
Expand All @@ -23,36 +23,24 @@
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 vitest run --coverage"
},
"prettier": "@vercel/style-guide/prettier",
"dependencies": {
"@bufbuild/protobuf": "^1.3.3",
"@connectrpc/connect": "^1.1.2",
"@connectrpc/connect-query": "^0.5.3",
"@connectrpc/connect-web": "^1.1.2",
"@tanstack/query-core": "^4.36.1",
"@tanstack/react-query": "^4.36.1",
"@valorem-labs-inc/sdk": "^0.0.4",
"@wagmi/cli": "^1.5.2",
"@wagmi/core": "^1.4.5",
"abitype": "0.8.7",
"connectkit": "^1.5.3",
"siwe": "^2.1.4",
"viem": "^1.16.6",
"wagmi": "^1.4.5"
},
"devDependencies": {
"@bufbuild/buf": "^1.27.1",
"@bufbuild/protoc-gen-es": "^1.3.3",
"@changesets/cli": "^2.26.2",
"@connectrpc/protoc-gen-connect-query": "^0.5.3",
"@connectrpc/protoc-gen-connect-query": "0.5.3",
"@parcel/packager-ts": "2.10.3",
"@parcel/transformer-typescript-types": "2.10.3",
"@tanstack/query-core": "^4.36.1",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^20.8.7",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@vercel/style-guide": "^5.0.1",
"@vitest/coverage-v8": "^0.34.6",
"@wagmi/cli": "^1.5.2",
"@wagmi/core": "^1.4.7",
"abitype": "0.8.7",
"connectkit": "^1.5.3",
"eslint": "^8.52.0",
"happy-dom": "^12.9.1",
"jest-environment-jsdom": "^29.7.0",
Expand All @@ -61,16 +49,29 @@
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"siwe": "^2.1.4",
"typedoc": "^0.25.2",
"typedoc-plugin-missing-exports": "^2.1.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"zod": "^3.22.4"
"vitest": "^0.34.6"
},
"peerDependencies": {
"react": ">=17.0.0",
"typescript": ">=5.0.4",
"viem": ">=0.3.35"
"@bufbuild/buf": "^1.27.1",
"@bufbuild/protobuf": "^1.4.2",
"@connectrpc/connect": "^1.1.3",
"@connectrpc/connect-query": "0.5.3",
"@connectrpc/connect-web": "^1.1.2",
"@tanstack/react-query": "^4.36.1",
"@valorem-labs-inc/sdk": "^0.0.4",
"@wagmi/core": "^1.4.7",
"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.2.0",
"viem": "^1.19.9",
"wagmi": "^1.4.7",
"zod": "^3.22.4"
},
"peerDependenciesMeta": {
"typescript": {
Expand Down
Loading

0 comments on commit 0957cb1

Please sign in to comment.