Socket
Socket
Sign inDemoInstall

@lerna-lite/version

Package Overview
Dependencies
338
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.2.1 to 3.3.0

3

dist/version-command.js

@@ -535,3 +535,4 @@ import chalk from 'chalk';

async gitCommitAndTagVersionForUpdates() {
const tags = this.packagesToVersion.map((pkg) => `${pkg.name}@${this.updatesVersions?.get(pkg.name)}`);
const tagVersionSeparator = this.options.tagVersionSeparator || '@';
const tags = this.packagesToVersion.map((pkg) => `${pkg.name}${tagVersionSeparator}${this.updatesVersions?.get(pkg.name)}`);
const subject = this.options.message || 'chore: Publish new release';

@@ -538,0 +539,0 @@ const message = tags.reduce((msg, tag) => `${msg}${OS_EOL} - ${tag}`, `${subject}${OS_EOL}`);

{
"name": "@lerna-lite/version",
"description": "Bump version & write changelog of packages changed since the last release",
"version": "3.2.1",
"version": "3.3.0",
"files": [

@@ -39,4 +39,4 @@ "/dist"

"dependencies": {
"@lerna-lite/cli": "3.2.1",
"@lerna-lite/core": "3.2.1",
"@lerna-lite/cli": "3.3.0",
"@lerna-lite/core": "3.3.0",
"@octokit/plugin-enterprise-rest": "^6.0.1",

@@ -67,3 +67,3 @@ "@octokit/rest": "^20.0.2",

"pify": "^6.1.0",
"semver": "^7.5.4",
"semver": "^7.6.0",
"slash": "^5.1.0",

@@ -74,3 +74,3 @@ "temp-dir": "^3.0.0",

},
"gitHead": "c77d7669dfda755fca01a8306e3cfe3a32f629d7"
"gitHead": "1007d517ce9cd4338c4e59214a149b689bbf5ffa"
}

@@ -92,4 +92,5 @@ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

- [`--force-publish`](#--force-publish)
- [`--dry-run`](#--dry-run)
- [`--git-tag-command <cmd>`](#--git-tag-command-cmd)
- [`--dry-run`](#--dry-run)
- [`--tag-version-separator`](#--tag-version-separator)
- [`--git-remote <name>`](#--git-remote-name)

@@ -542,2 +543,9 @@ - [`--ignore-changes`](#--ignore-changes)

### `--tag-version-separator`
Customize the tag version separator used when creating tags for independent versioning, defaults to "@".
```sh
lerna version --tag-version-separator "__"
```
### `--git-remote <name>`

@@ -544,0 +552,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc