You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a monorepo setup using yarn workspaces (possibly others, haven't checked), the name of each package in the monorepo is determined by the name field in that package.json. This can be the same as the name of the folder it resides in, but they are allowed by yarn to be different.
In a monorepo setup using yarn workspaces (possibly others, haven't checked), the name of each package in the monorepo is determined by the name field in that package.json. This can be the same as the name of the folder it resides in, but they are allowed by yarn to be different.
Take a repo set up like this
foo
lists@my-org/bar-lib
in its package.json dependencies (and can import from that package using that name just fine)When you try to
yalc publish
inpackages/foo
, you'll get a warningCould not resolve workspace package location for @my-org/shared-lib
.It looks like it attempts to resolve workspace dependencies by assuming their directory names match their package names
yalc/src/copy.ts
Line 65 in 3b834e4
Instead, it probably needs to traverse every package in the root package.json's
workspaces
and collect a map of their names to their directory paths.The text was updated successfully, but these errors were encountered: