-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Support other workspace:
specifiers
#26726
Labels
Comments
I did some digging into this and here's what I found:
@dsherret do you agree here? |
It looks good, but I think we probably dont' need any changes in deno_semver. Probably it could just be handled in deno_package_json (I'm not sure though) |
bartlomieju
added a commit
that referenced
this issue
Dec 5, 2024
) This commit adds support for understanding "workpace:^" and "workspace:~" version constraints in npm/pnpm workspaces. This is done by upgrading various crates to their latest versions. Closes #26726 --------- Co-authored-by: David Sherret <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently Deno supports
workspace:*
specifiers inpackage.json
, but tools like pnpm also supportworkspace:^
,workspace:~
and others.See https://pnpm.io/workspaces#publishing-workspace-packages
Necessary changes would need to be applied around this code:
https://github.com/search?q=org%3Adenoland+PackageJsonDepValue%3A%3AWorkspace&type=code
The text was updated successfully, but these errors were encountered: