Skip to content

Commit

Permalink
fix(turborepo): update package.json typo (#8621)
Browse files Browse the repository at this point in the history
`@repo/ui` is being used as a monorepo dependency and `^` is not a valid
version number. This is supposed to be `*` as it is in other packages.
This causes `npm install` to fail while installing dependencies.
  • Loading branch information
JannatinNaimXIII committed Jun 28, 2024
1 parent 54ea3f0 commit 0f32796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/kitchen-sink/apps/blog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/server-runtime": "^2.9.2",
"@repo/ui": "workspace:^",
"@repo/ui": "workspace:*",
"@vercel/analytics": "^1.2.2",
"@vercel/remix": "2.9.2-patch.2",
"isbot": "^4",
Expand Down

0 comments on commit 0f32796

Please sign in to comment.