Packages Publisher
Tool to help publishing packages within a repository, using the same version for all packages.
Quick start
You can install it globally to use across projects:
npm install -g packages-publisher
You can check it has been installed by running:
packages-publisher --help
or the short version:
pkgs --help
Commands
At any point, you can run pkgs [command] --help
to learn more about a command.
Bump Versions
This bumps all packages in the given path and where they are used as dependencies as well.
Example:
pkgs bump-versions minor --path packages
Publish
Builds and publishes all packages in the given path to npm.
You can skip build if you have a monorepo build type.
Example:
pkgs publish --path packages [--otp 123456] [--skip-build]
Development