
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@khala/commit-analyzer-wildcard
Advanced tools
Commit analyzer for semantic-release based on wildcards
Wildcard commit analyzer for semantic-release to find substrings in each commit message.
> npm install -D @khala/commit-analyzer-wildcard
> yarn add -D @khala/commit-analyzer-wildcard
Then add it to your release
options
package.json
{
"release": {
"analyzeCommits": "@khala/commit-analyzer-wildcard/analyzer"
}
}
.releaserc
{
"analyzeCommits": "@khala/commit-analyzer-wildcard/analyzer"
}
Simply add some special characters to any of your commit messages and new release will be triggered
<x.x.x>
or <x.x.?>
or <x.?.x>
or <x.?.?>
<?.x.x>
or <?.x.?>
<?.?.x>
<no>
To trigger automatic release add this to package.json
and install semantic-release
{
"scripts": {
"release": "semantic-release"
}
}
Settings for travis is
after_success:
- npm run release
To change default patterns you can pass your own in your release option.
{
"release": {
"analyzeCommits": [
{
"path": "@khala/commit-analyzer-wildcard/analyzer",
"patterns": {
"major": "<x.[x|?].[x|?]>",
"minor": "<?.x.[x|?]>",
"patch": "<?.?.x>",
"noRelease": "<no>"
}
}
]
}
}
Each pattern is transfered into Regular Expression and searched in each commit message.
FAQs
Commit analyzer for semantic-release based on wildcards
The npm package @khala/commit-analyzer-wildcard receives a total of 3 weekly downloads. As such, @khala/commit-analyzer-wildcard popularity was classified as not popular.
We found that @khala/commit-analyzer-wildcard demonstrated a not healthy version release cadence and project activity because the last version was released 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.