Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish does not resolve workspace dep when its name doesn't match its directory path #251

Open
chuckdries opened this issue Mar 11, 2025 · 0 comments

Comments

@chuckdries
Copy link

chuckdries commented Mar 11, 2025

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

package.json (with "workspaces": ["packages/*"])
packages
| foo
| | package.json (with "name": "@my-org/foo-lib")
| bar
| | package.json (with "name": "@my-org/bar-lib")

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 in packages/foo, you'll get a warning Could 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

const pkgPath = require.resolve(join(pkgName, 'package.json'), {

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant