Socket
Socket
Sign inDemoInstall

conventional-changelog-cli

Package Overview
Dependencies
Maintainers
4
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conventional-changelog-cli - npm Package Compare versions

Comparing version 2.2.2 to 3.0.0

21

cli.js

@@ -9,3 +9,2 @@ #!/usr/bin/env node

const tempfile = require('tempfile')
const _ = require('lodash')
const resolve = require('path').resolve

@@ -136,3 +135,3 @@

let options = _.omitBy({
let options = {
preset: flags.preset,

@@ -148,3 +147,3 @@ pkg: {

tagPrefix: flags.tagPrefix
}, _.isUndefined)
}

@@ -168,3 +167,13 @@ if (flags.verbose) {

options.config = config
options = _.merge(options, config.options)
if (config.options) {
options = {
...options,
...config.options,
pkg: {
...options.pkg,
...config.options.pkg
}
}
}
} else {

@@ -178,3 +187,5 @@ config = {}

const gitRawCommitsOpts = _.merge({}, config.gitRawCommitsOpts || {})
const gitRawCommitsOpts = {
...config.gitRawCommitsOpts
}
if (flags.commitPath) gitRawCommitsOpts.path = flags.commitPath

@@ -181,0 +192,0 @@

{
"name": "conventional-changelog-cli",
"version": "2.2.2",
"version": "3.0.0",
"description": "Generate a changelog from git metadata",

@@ -33,15 +33,14 @@ "bugs": {

"engines": {
"node": ">=10"
"node": ">=14"
},
"dependencies": {
"add-stream": "^1.0.0",
"conventional-changelog": "^3.1.24",
"lodash": "^4.17.15",
"meow": "^8.0.0",
"conventional-changelog": "^4.0.0",
"meow": "^8.1.2",
"tempfile": "^3.0.0"
},
"license": "MIT",
"scripts": {
"test-windows": "echo 'make work on windows'"
},
"license": "MIT"
}
}
}
# conventional-changelog-cli
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage percentage][coveralls-image]][coveralls-url]
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage percentage][coverage-image]][coverage-url]

@@ -127,3 +127,3 @@ > Generate a changelog from git metadata

[daviddm-url]: https://david-dm.org/conventional-changelog/conventional-changelog-cli
[coveralls-image]: https://coveralls.io/repos/conventional-changelog/conventional-changelog-cli/badge.svg
[coveralls-url]: https://coveralls.io/r/conventional-changelog/conventional-changelog-cli
[coverage-image]: https://coveralls.io/repos/github/conventional-changelog/conventional-changelog/badge.svg?branch=master
[coverage-url]: https://coveralls.io/github/conventional-changelog/conventional-changelog?branch=master
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc