Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
semantic-release-monorepo
Advanced tools
Plugins for `semantic-release` allowing it to be used with a monorepo.
Apply semantic-release
's automatic publishing to a monorepo.
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 semantic-release-monorepo
must be accessible in each monorepo package.
npm install -D semantic-release semantic-release-monorepo
Run semantic-release
in an individual monorepo package and apply semantic-release-monorepo
via the extends
option.
On the command line:
$ npm run semantic-release -e semantic-release-monorepo
Or in the release config:
{
"extends": "semantic-release-monorepo"
}
NOTE: This library CAN'T be applied via the plugins
option.
{
"plugins": [
"semantic-release-monorepo" // This WON'T work
]
}
$ yarn workspaces run semantic-release -e semantic-release-monorepo
The monorepo management tool lerna
can be used to run semantic-release-monorepo
across all packages in a monorepo with a single command:
lerna exec --concurrency 1 -- npx --no-install semantic-release -e semantic-release-monorepo
pnpm 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 semantic-release-monorepo
Thanks to how npx's package resolution works
, if the repository root is in $PATH
(typically true on CI), semantic-release
and 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 semantic-release-monorepo --tag-format='${LERNA_PACKAGE_NAME}-v\\${version}'"
Where '${LERNA_PACKAGE_NAME}-v\\${version}'
is the string you want to customize. By default it will be <PACKAGE_NAME>-v<VERSION>
(e.g. foobar-v1.2.3
).
FAQs
Plugins for `semantic-release` allowing it to be used with a monorepo.
The npm package semantic-release-monorepo receives a total of 27,338 weekly downloads. As such, semantic-release-monorepo popularity was classified as popular.
We found that semantic-release-monorepo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.