Socket
Socket
Sign inDemoInstall

@lerna/command

Package Overview
Dependencies
Maintainers
2
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lerna/command - npm Package Compare versions

Comparing version 5.5.4 to 5.6.0

7

index.js

@@ -22,3 +22,3 @@ "use strict";

class Command {
constructor(_argv) {
constructor(_argv, { skipValidations } = { skipValidations: false }) {
log.pause();

@@ -53,3 +53,6 @@ log.heading = "lerna";

chain = chain.then(() => this.configureLogging());
chain = chain.then(() => this.runValidations());
// For the special "repair" command we want to intitialize everything but don't want to run validations as that will end up becoming cyclical
if (!skipValidations) {
chain = chain.then(() => this.runValidations());
}
chain = chain.then(() => this.runPreparations());

@@ -56,0 +59,0 @@ chain = chain.then(() => this.runCommand());

{
"name": "@lerna/command",
"version": "5.5.4",
"version": "5.6.0",
"description": "Lerna's internal base class for commands",

@@ -35,7 +35,7 @@ "keywords": [

"dependencies": {
"@lerna/child-process": "5.5.4",
"@lerna/package-graph": "5.5.4",
"@lerna/project": "5.5.4",
"@lerna/validation-error": "5.5.4",
"@lerna/write-log-file": "5.5.4",
"@lerna/child-process": "5.6.0",
"@lerna/package-graph": "5.6.0",
"@lerna/project": "5.6.0",
"@lerna/validation-error": "5.6.0",
"@lerna/write-log-file": "5.6.0",
"clone-deep": "^4.0.1",

@@ -47,3 +47,3 @@ "dedent": "^0.7.0",

},
"gitHead": "f65ef552cb6c8299b3c55aaded78a037fea10294"
"gitHead": "07271fe0347052a1505e81c6f08a4f12c4b70c7a"
}
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