Apply semantic-release's automatic publishing to a monorepo.
DiscordServers fork of pmowrer/semantic-release-monorepo. Differences from upstream:
- Git tags use the
<package-name>@<version>format (e.g.www@1.2.3) instead of<package-name>-v<version>. - Non-JS packages are supported via the
SEMANTIC_RELEASE_PACKAGEenvironment variable, so a package with nopackage.json(e.g. a PHP app) can still be released. - Release steps no longer crash when they run with no commits.
- Works with
semantic-releasev22 through v25.
The default configuration of semantic-release assumes a one-to-one relationship between a GitHub repository and an npm package.
This library allows using semantic-release with a single GitHub repository containing many npm packages.
Instead of attributing all commits to a single package, commits are assigned to packages based on the files that a commit touched.
If a commit touched a file in or below a package's root, it will be considered for that package's next release. A single commit can belong to multiple packages and may trigger the release of multiple packages.
In order to avoid version collisions, generated git tags are namespaced using the given package's name: <package-name>@<version>.
Both semantic-release and @discordservers/semantic-release-monorepo must be accessible in each monorepo package.
npm install -D semantic-release @discordservers/semantic-release-monorepoRun semantic-release in an individual monorepo package and apply @discordservers/semantic-release-monorepo via the extends option.
On the command line:
$ npx semantic-release -e @discordservers/semantic-release-monorepoOr in the release config:
{
"extends": "@discordservers/semantic-release-monorepo"
}NOTE: This library CAN'T be applied via the plugins option.
{
"plugins": [
"@discordservers/semantic-release-monorepo" // This WON'T work
]
}$ yarn workspaces run npx semantic-release -e @discordservers/semantic-release-monorepoThe monorepo management tool lerna can be used to run @discordservers/semantic-release-monorepo across all packages in a monorepo with a single command:
lerna exec --concurrency 1 -- npx --no-install semantic-release -e @discordservers/semantic-release-monorepopnpm has built-in workspace functionality for monorepos. Similarly to the above, you can use pnpm to make release in all packages:
pnpm -r --workspace-concurrency=1 exec -- npx --no-install semantic-release -e @discordservers/semantic-release-monorepoThanks to how npx's package resolution works, if the repository root is in $PATH (typically true on CI), semantic-release and @discordservers/semantic-release-monorepo can be installed once in the repo root instead of in each individual package, likely saving both time and disk space.
This library modifies the context object passed to semantic-release plugins in the following way to make them compatible with a monorepo.
| Step | Description |
|---|---|
analyzeCommits |
Filters context.commits to only include the given monorepo package's commits. |
generateNotes |
|
Pre-configures the tagFormat option to use the monorepo git tag format.
If you are using Lerna, you can customize the format using the following command:
"semantic-release": "lerna exec --concurrency 1 -- semantic-release -e @discordservers/semantic-release-monorepo --tag-format='${LERNA_PACKAGE_NAME}@\\${version}'"
Where '${LERNA_PACKAGE_NAME}@\\${version}' is the string you want to customize. By default it will be <PACKAGE_NAME>@<VERSION> (e.g. foobar@1.2.3).
The package name is normally read from the package's package.json. For a package with no package.json (e.g. a PHP app), set the SEMANTIC_RELEASE_PACKAGE environment variable to the name you want; it takes precedence over package.json and drives both the git tag prefix and the release-notes header.
SEMANTIC_RELEASE_PACKAGE=my-php-app npx semantic-release -e @discordservers/semantic-release-monorepo