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
> spago publish -p project-a
Your package "project-a" is not ready for publishing yet, encountered 1 error:
✘ Some of the packages you specified as `extraPackages` do not point to the Registry.
To be able to publish a package to the registry, all of its dependencies have to be packages registered on the Registry.
Please replace the following packages with versions that are present in the Registry:
- project-a
The text was updated successfully, but these errors were encountered:
When checking dependencies,
spago publish
checks dependencies of all packages in the workspace, not just the one being published.The culprit line is:
spago/src/Spago/Command/Publish.purs
Line 120 in 5407217
It smooshes all dependencies in a single bucket before checking them.
Repro
./spago.yaml
./b/spago.yaml
Try to publish:
The text was updated successfully, but these errors were encountered: