Socket
Socket
Sign inDemoInstall

@lerna/collect-updates

Package Overview
Dependencies
Maintainers
2
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lerna/collect-updates - npm Package Compare versions

Comparing version 3.10.0 to 3.10.1

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [3.10.1](https://github.com/lerna/lerna/compare/v3.10.0...v3.10.1) (2019-01-09)
### Bug Fixes
* **collect-updates:** Avoid improper bumps from prompt selections ([06a1cff](https://github.com/lerna/lerna/commit/06a1cff)), closes [#1357](https://github.com/lerna/lerna/issues/1357)
# [3.10.0](https://github.com/lerna/lerna/compare/v3.9.1...v3.10.0) (2019-01-08)

@@ -8,0 +19,0 @@

9

collect-updates.js

@@ -59,6 +59,7 @@ "use strict";

const hasDiff = makeDiffPredicate(committish, execOpts, commandOptions.ignoreChanges);
const needsBump = (commandOptions.bump || "").startsWith("pre")
? () => false
: /* skip packages that have not been previously prereleased */
node => node.prereleaseId;
const needsBump =
!commandOptions.bump || commandOptions.bump.startsWith("pre")
? () => false
: /* skip packages that have not been previously prereleased */
node => node.prereleaseId;

@@ -65,0 +66,0 @@ packages.forEach((node, name) => {

{
"name": "@lerna/collect-updates",
"version": "3.10.0",
"version": "3.10.1",
"description": "An internal Lerna tool",

@@ -40,3 +40,3 @@ "keywords": [

},
"gitHead": "ea8ffa7eb7f63cadc8534332ac3e19f6214ea6da"
"gitHead": "d13e9016c79f4244f84100993aecae3edba957d6"
}
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