Skip to content

Commit

Permalink
build: use exact version dependencies to keep all packages in sync
Browse files Browse the repository at this point in the history
  • Loading branch information
tien committed Jun 15, 2024
1 parent c62fd71 commit f2a7c6e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions apps/example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"postinstall": "npx papi"
},
"dependencies": {
"@reactive-dot/react": "workspace:^",
"@reactive-dot/react": "workspace:*",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/universal-provider": "^2.13.2",
"date-fns": "^3.6.0",
Expand All @@ -21,7 +21,7 @@
"react-error-boundary": "^4.0.13"
},
"devDependencies": {
"@reactive-dot/eslint-config": "workspace:^",
"@reactive-dot/eslint-config": "workspace:*",
"@tsconfig/recommended": "^1.0.6",
"@tsconfig/strictest": "^2.0.5",
"@tsconfig/vite-react": "^3.0.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@
"build": "rm -rf build && tsc --build",
"lint": "eslint src"
},
"dependencies": {
"@reactive-dot/utils": "workspace:*"
},
"devDependencies": {
"@reactive-dot/eslint-config": "workspace:^",
"@reactive-dot/eslint-config": "workspace:*",
"@tsconfig/recommended": "^1.0.6",
"@tsconfig/strictest": "^2.0.5",
"@walletconnect/modal": "^2.6.2",
Expand All @@ -47,8 +50,5 @@
"@walletconnect/universal-provider": {
"optional": true
}
},
"dependencies": {
"@reactive-dot/utils": "workspace:^"
}
}
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"lint": "eslint src"
},
"dependencies": {
"@reactive-dot/core": "workspace:^",
"@reactive-dot/core": "workspace:*",
"jotai": "^2.8.3",
"jotai-scope": "^0.6.0"
},
"devDependencies": {
"@reactive-dot/eslint-config": "workspace:^",
"@reactive-dot/eslint-config": "workspace:*",
"@tsconfig/recommended": "^1.0.6",
"@tsconfig/strictest": "^2.0.5",
"@types/react": "^18.3.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"test": "vitest run"
},
"devDependencies": {
"@reactive-dot/eslint-config": "workspace:^",
"@reactive-dot/eslint-config": "workspace:*",
"@tsconfig/recommended": "^1.0.6",
"@tsconfig/strictest": "^2.0.5",
"eslint": "^9.4.0",
Expand Down

0 comments on commit f2a7c6e

Please sign in to comment.