-
Notifications
You must be signed in to change notification settings - Fork 231
pub run can't run a bin script in a transitive dependencies #21
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
Comments
<img src="https://avatars.githubusercontent.com/u/5479?v=3" align="left" width="48" height="48"hspace="10"> Comment by sethladd |
<img src="https://avatars.githubusercontent.com/u/46275?v=3" align="left" width="48" height="48"hspace="10"> Comment by munificent As the error message indicates, this is deliberate. Packages don't automatically make their transitive dependencies part of their own public API, and that philosophy extends to binaries. If A depends on B, that's an implementation detail of A, and not something that should be exposed to all consumers. That includes any binaries B may contain. cc @nex3. |
<img src="https://avatars.githubusercontent.com/u/5479?v=3" align="left" width="48" height="48"hspace="10"> Comment by sethladd Thanks for the detailed explanation. We'll wrap the script from the developer-facing dependency. |
<img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="48" height="48"hspace="10"> Comment by nex3 Keep in mind that if you're exporting the public API of another package, including its executables, your package should have a very narrow constraint on the package you're exporting. For example, if A exports B and the latest version of B is 1.0.0, A should have the constraint ">=1.0.0 <1.1.0" for B. Otherwise, A is unable to guarantee that its API will be stable in the way its versions indicate. |
<img src="https://avatars.githubusercontent.com/u/5479?v=3" align="left" width="96" height="96"hspace="10"> Issue by sethladd
Originally opened as dart-lang/sdk#23426
Testing out pub run's ability to run scripts. It appears that it's unable to run a script in a dependency's dependency.
Setup:
package A
depends on package B
package B
depends on dartdoc
I tried running with
pub run dartdoc:dartdoc
from package AOutput/error:
Package "dartdoc" is not an immediate dependency.
Cannot run executables in transitive dependencies.
The text was updated successfully, but these errors were encountered: