Socket
Socket
Sign inDemoInstall

@lerna/command

Package Overview
Dependencies
Maintainers
4
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 3.0.0-beta.1 to 3.0.0-beta.2

19

CHANGELOG.md

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

<a name="3.0.0-beta.2"></a>
# [3.0.0-beta.2](https://github.com/lerna/lerna/compare/v3.0.0-beta.1...v3.0.0-beta.2) (2018-03-10)
### Features
* Replace [@lerna](https://github.com/lerna)/match-package-name with multimatch ([423f82c](https://github.com/lerna/lerna/commit/423f82c))
* **filter-packages:** Simplify method signature ([47e1c86](https://github.com/lerna/lerna/commit/47e1c86))
### BREAKING CHANGES
* **filter-packages:** The parameters to `filterPackages()` have changed:
* Two lists (include, exclude) have replaced the destructured config object
<a name="3.0.0-beta.1"></a>

@@ -8,0 +27,0 @@ # [3.0.0-beta.1](https://github.com/lerna/lerna/compare/v3.0.0-beta.0...v3.0.0-beta.1) (2018-03-09)

12

index.js

@@ -192,12 +192,4 @@ "use strict";

const { rootPath, packageConfigs } = this.repository;
const { scope, ignore } = this.options;
const { scope: include, ignore: exclude } = this.options;
if (scope) {
log.info("scope", scope);
}
if (ignore) {
log.info("ignore", ignore);
}
let chain = Promise.resolve();

@@ -209,3 +201,3 @@

this.packageGraph = new PackageGraph(packages);
this.filteredPackages = filterPackages(packages, { scope, ignore }, this.options.private);
this.filteredPackages = filterPackages(packages, include, exclude, this.options.private);
});

@@ -212,0 +204,0 @@

{
"name": "@lerna/command",
"version": "3.0.0-beta.1",
"version": "3.0.0-beta.2",
"description": "TODO",

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

"@lerna/collect-updates": "^3.0.0-beta.0",
"@lerna/filter-packages": "^3.0.0-beta.1",
"@lerna/filter-packages": "^3.0.0-beta.2",
"@lerna/git-utils": "^3.0.0-beta.0",

@@ -48,3 +48,3 @@ "@lerna/package-graph": "^3.0.0-beta.1",

},
"gitHead": "5a527968bb9f7b7c3af0d5d86391d6d2650ddc7a"
"gitHead": "ca9561a1ffe6292cceaeca30e4f7d5d85757c710"
}
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