Socket
Socket
Sign inDemoInstall

@lerna/filter-options

Package Overview
Dependencies
Maintainers
4
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lerna/filter-options - npm Package Compare versions

Comparing version 3.0.0-beta.1 to 3.0.0-beta.2

12

CHANGELOG.md

@@ -6,2 +6,14 @@ # 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))
<a name="3.0.0-beta.1"></a>

@@ -8,0 +20,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)

@@ -14,2 +14,10 @@ "use strict";

requiresArg: true,
coerce: arg => {
// always return a list of globs
if (!Array.isArray(arg)) {
return [arg];
}
return arg;
},
},

@@ -20,2 +28,10 @@ ignore: {

requiresArg: true,
coerce: arg => {
// negate any globs passed
if (!Array.isArray(arg)) {
return [`!${arg}`];
}
return arg.map(str => `!${str}`);
},
},

@@ -22,0 +38,0 @@ private: {

4

package.json
{
"name": "@lerna/filter-options",
"version": "3.0.0-beta.1",
"version": "3.0.0-beta.2",
"description": "Options for lerna sub-commands that need filtering",

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

},
"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