Socket
Socket
Sign inDemoInstall

@lerna/filter-options

Package Overview
Dependencies
1
Maintainers
4
Versions
80
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

14

CHANGELOG.md

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

<a name="3.0.0-beta.9"></a>
# [3.0.0-beta.9](https://github.com/lerna/lerna/compare/v3.0.0-beta.8...v3.0.0-beta.9) (2018-03-24)
### Bug Fixes
* **filter-options:** Move include/exclude validation into filter-packages ([503251d](https://github.com/lerna/lerna/commit/503251d))
<a name="3.0.0-beta.2"></a>

@@ -13,3 +25,3 @@ # [3.0.0-beta.2](https://github.com/lerna/lerna/compare/v3.0.0-beta.1...v3.0.0-beta.2) (2018-03-10)

* Replace [@lerna](https://github.com/lerna)/match-package-name with multimatch ([423f82c](https://github.com/lerna/lerna/commit/423f82c))
* Replace @lerna/match-package-name with multimatch ([423f82c](https://github.com/lerna/lerna/commit/423f82c))

@@ -16,0 +28,0 @@

18

index.js

@@ -13,11 +13,2 @@ "use strict";

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

@@ -27,11 +18,2 @@ ignore: {

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

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

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

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

},
"gitHead": "ca9561a1ffe6292cceaeca30e4f7d5d85757c710"
"gitHead": "70528f23cad0186fdf7529fe32148cc1eff21272"
}
SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc