Gathering detailed insights and metrics for semantic-release-config-aron
Gathering detailed insights and metrics for semantic-release-config-aron
Gathering detailed insights and metrics for semantic-release-config-aron
Gathering detailed insights and metrics for semantic-release-config-aron
A monorepo ecosystem integrating first-class packages and conventional workflows ✨
npm install semantic-release-config-aron
Typescript
Module System
Node Version
NPM Version
TypeScript (81%)
JavaScript (16.51%)
Svelte (1.5%)
CSS (0.67%)
Dockerfile (0.19%)
Shell (0.12%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
7 Stars
324 Commits
2 Watchers
2 Branches
3 Contributors
Updated on Nov 05, 2023
Latest Version
1.6.0
Package Id
semantic-release-config-aron@1.6.0
Unpacked Size
9.55 kB
Size
2.47 kB
File Count
5
NPM Version
8.19.3
Node Version
18.12.1
Published on
Mar 27, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
Skip if you have already run npm install aronrepo
:
npm install semantic-release-config-aron -D
Create a release.config.js
file in your project root and extend aron
:
1module.exports = { 2 extends: 'semantic-release-config-aron' 3}
For full configuration, check out the configure.js file and Aron's conventional commits for the release rules
Since .plugins
use arrays for configuration, even extends
will override all preset plugins.
I provide configure(options)
API to allow you to set additional config friendly:
1const releaseRules = require('semantic-release-config-aron/rules') 2const configure = require('semantic-release-config-aron/configure') 3 4module.exports = configure({ 5 branches: [ 6 '+([0-9])?(.{+([0-9]),x}).x', 7 'main', 8 'next', 9 'next-major', 10 { 11 name: 'beta', 12 prerelease: true 13 }, 14 { 15 name: 'alpha', 16 prerelease: true 17 } 18 ], 19 plugins: { 20 '@semantic-release/commit-analyzer': { preset: 'aron', releaseRules }, 21 '@semantic-release/release-notes-generator': { preset: 'aron' }, 22 '@semantic-release/exec': { 23 prepareCmd: 'npm run check && npm run build', 24 publishCmd: 'aron version ${nextRelease.version}' 25 }, 26 '@semantic-release/npm': true, 27 '@semantic-release/github': true 28 } 29})
The above example is equivalent to the extends: 'semantic-release-config-aron'
preset.
For example, to add assets for a GitHub Release and keep the default plugins:
1module.exports = configure({ 2 plugins: { 3 '@semantic-release/github': { 4 assets: [ 5 { 6 path: 'packages/css/dist/index.browser.js', 7 name: 'master-css.js', 8 label: 'master-css.js' 9 } 10 ] 11 } 12 } 13})
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
project is archived
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
25 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More