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
Let's add a --skip-validation so that people can side step validations, should they cause issues for the user. At the end of the day you can side-step checks using a different SDK version or by modifying the SDK. The only thing that can really reject a package is the server.
dart pub publish --help
Publish the current package to pub.dev.
Usage: dart pub publish [options]
-h, --help Print this usage information.
-n, --dry-run Validate but do not publish the package.
-f, --force Publish without confirmation if there are no errors.
--skip-validation Publish without validation (this will ignore errors).
-C, --directory=<dir> Run this in the directory<dir>.
Run "dart help" to see global options.
See https://dart.dev/tools/pub/cmd/pub-lish for detailed documentation.
The text was updated successfully, but these errors were encountered:
Let's add a
--skip-validation
so that people can side step validations, should they cause issues for the user. At the end of the day you can side-step checks using a different SDK version or by modifying the SDK. The only thing that can really reject a package is the server.The text was updated successfully, but these errors were encountered: