| tags |
|
|
|---|---|---|
| category | doc |
Publishing automates all the bumping and synchronizing of package versions in the git remote as well as the npm registry.
See the options page.
The publish command is designed to run steps in an order that minimizes the chances of mid-publish failure by doing validation upfront.
beachball publish performs the following steps:
- Validate that options and change files are valid
- Bump and publish to npm (unless disabled):
- Bump the package versions locally
- Generate the changelog files (unless disabled)
- Delete change files locally (unless disabled)
- Validate that nothing to be published depends on a private package
- Publish packages to npm in topological order based on the dependency graph (to reduce the chances that if there's a failure partway through, a published package might require unpublished versions)
- Bump and push to git (unless bumping or pushing is disabled):
- Revert any previous changes (from the publish step)
- Merge the latest changes from the remote branch to avoid merge conflicts (unless fetching is disabled)
- Bump the versions locally
- Generate the changelog files (unless disabled)
- Delete change files locally (unless disabled)
- Commit the changes
- Create git tags for new package versions (unless disabled)
- Push the changes and tags
It might be surprising that beachball publish does so many steps, especially the step about reverting changes! In most version bumping systems that automate syncing the git repo and npm registry, they assume that the source code is still fresh once it's time to push changes back to the git repository. This is rarely the case for large repos with many developers. So, beachball fetches the latest changes before pushing back to the target branch to avoid merge conflicts.
If you'd like to do a dry run of publishing, the --dry-run option works as follows:
- Makes all changes locally
- Runs
npm publish --dry-run(skipped if thepublishoption is disabled) - Commits the changes locally and merges them into the target branch, but does not tag or push (skipped if the
bumporpushoption is disabled) - Stays on the current branch (and doesn't delete the publish branch) so you can inspect changes
See the CI integration page details and examples for how to run beachball publish in CI.
If the publish command fails partway through, after some versions have been published to the registry, you'll need to run beachball sync and commit the changes.