Skip to content

Commit e349999

Browse files
fix(web): declare @repowise-dev/ui and @repowise-dev/types as workspace deps
Both packages were imported throughout packages/web but only resolved via implicit workspace hoisting. Declaring them explicitly makes the dependency relationship discoverable and prevents isolated installs (e.g. cd packages/web && npm install) from failing with module-not-found. Lockfile picks up pre-existing drift in the packages/ui entry (@xyflow/react, fuse.js were already in packages/ui/package.json but absent from the lock).
1 parent e3187d1 commit e349999

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

package-lock.json

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
"type-check": "tsc --noEmit"
1212
},
1313
"dependencies": {
14+
"@repowise-dev/types": "*",
15+
"@repowise-dev/ui": "*",
1416
"@radix-ui/react-accordion": "^1.2.0",
1517
"@radix-ui/react-dialog": "^1.1.0",
1618
"@radix-ui/react-dropdown-menu": "^2.1.0",

0 commit comments

Comments
 (0)