Socket
Socket
Sign inDemoInstall

@semantic-release/commit-analyzer

Package Overview
Dependencies
8
Maintainers
4
Versions
60
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 13.0.0-beta.1 to 13.0.0-beta.2

15

index.js

@@ -34,3 +34,3 @@ import { isUndefined } from "lodash-es";

const parser = new CommitParser(config)
const parser = new CommitParser(config);
const filteredCommits = filterRevertedCommitsSync(

@@ -46,11 +46,12 @@ commits

})
.map((rawCommit) => ({
...rawCommit,
...parser.parse(rawCommit.message)
.map(({ message, ...commitProps }) => ({
rawMsg: message,
message,
...commitProps,
...parser.parse(message),
}))
);
for (const { message, ...commit } of filteredCommits) {
console.log(`Analyzing commit: %s`, message)
logger.log(`Analyzing commit: %s`, message);
for (const { rawMsg, ...commit } of filteredCommits) {
logger.log(`Analyzing commit: %s`, rawMsg);
let commitReleaseType;

@@ -57,0 +58,0 @@

{
"name": "@semantic-release/commit-analyzer",
"description": "semantic-release plugin to analyze commits with conventional-changelog",
"version": "13.0.0-beta.1",
"version": "13.0.0-beta.2",
"type": "module",

@@ -6,0 +6,0 @@ "author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc