Sigurd Meldgaard
Sigurd Meldgaard
Related to https://github.com/dart-lang/pub/issues/2535 .
@devoncarew we now have `dart pub publish --skip-validation` as a generic escape hatch, and pub no longer treats infos as fatal. Do we still need being able to ignore specific...
> Which things pub publish reports about are infos? We used to have the validation run `dart analyze --fatal-infos` and give a warning in case it returned non-zero. (The thinking...
Yeah it would be nice to show up-front that the package is discontinued. A sad thing here is that **if** it managed to resolve it would be shown as discontinued...
Related to https://github.com/dart-lang/pub-dev/issues/2457
Just to be clear - you are not suggesting here that dependencies can define hooks that automatically get get executed?
I think this makes a lot of sense for `pub publish` such that you can set up your own validations. It makes some sense for `dart test`. Though I think...
Btw. the hook for `dart test` is probably an sdk feature - not a pub client feature.
I think we can narrow the scope of this issue to be just hooks for `pub publish`.
Looking into the quoting rules, I think there is a bug here. `'true'` matches this regexp, but should be quoted in yaml. That means the following test breaks: ```dart import...