Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lerna-changelog

Package Overview
Dependencies
Maintainers
4
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lerna-changelog - npm Package Compare versions

Comparing version 2.0.1 to 2.1.0

9

CHANGELOG.md
# Changelog
## v2.1.0 (2021-08-07)
#### :rocket: Enhancement
* [#495](https://github.com/lerna/lerna-changelog/pull/495) Add support for `--repo` option ([@Turbo87](https://github.com/Turbo87))
#### Committers: 1
- Tobias Bieniek ([@Turbo87](https://github.com/Turbo87))
## v2.0.1 (2021-08-07)

@@ -5,0 +14,0 @@

@@ -54,2 +54,7 @@ "use strict";

},
repo: {
type: "string",
desc: "`<USER|ORG>/<PROJECT>` of the GitHub project",
defaultDescription: "inferred from the `package.json` file",
},
})

@@ -68,2 +73,3 @@ .example("lerna-changelog", 'create a changelog for the changes after the latest available tag, under "Unreleased" section')

nextVersionFromMetadata: argv["next-version-from-metadata"],
repo: argv.repo,
});

@@ -70,0 +76,0 @@ if (argv["next-version"] !== NEXT_VERSION_DEFAULT) {

3

lib/configuration.js

@@ -17,2 +17,5 @@ "use strict";

let config = fromPackageConfig(rootPath) || fromLernaConfig(rootPath) || {};
if (options.repo) {
config.repo = options.repo;
}
let { repo, nextVersion, labels, cacheDir, ignoreCommitters } = config;

@@ -19,0 +22,0 @@ if (!repo) {

2

package.json
{
"name": "lerna-changelog",
"version": "2.0.1",
"version": "2.1.0",
"description": "Generate a changelog for a lerna monorepo",

@@ -5,0 +5,0 @@ "keywords": [

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