Publish Dart Packages
Suppose you have a Dart package and want to publish it to the newly created Dart package repository using:
Specify the repository URL and an access token for the
dart
tool:dart pub token add https://dart.pkg.jetbrains.space/mycompany/p/projectkey/mydart
https://dart.pkg.jetbrains.space/mycompany/p/projectkey/mydart
is the repository URLmycompany
is the name of your company in Space,mydart
is the repository name.
If you are not sure about the URL, you can copy the URL of a particular repository on the Packages page.
When asked for a token, specify your personal access token. You can manage the created token on the My Profile | Security | Personal Tokens page.
Open the directory with your Dart project.
In the project's pubspec.yml file, add the repository URL:
publish_to: https://dart.pkg.jetbrains.space/mycompany/p/projectkey/mydart
Publish the package to the repository:
dart pub publish
For the instructions on how to publish Dart packages from Space Automation, refer to Space Automation examples.
Thanks for your feedback!