Socket
Socket
Sign inDemoInstall

@lerna/list

Package Overview
Dependencies
Maintainers
2
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lerna/list - npm Package Compare versions

Comparing version 3.21.0 to 4.0.0

23

CHANGELOG.md

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

# [4.0.0](https://github.com/lerna/lerna/compare/v3.22.1...v4.0.0) (2021-02-10)
### Features
* Consume named exports of sibling modules ([63499e3](https://github.com/lerna/lerna/commit/63499e33652bc78fe23751875d74017e2f16a689))
* Drop support for Node v6.x & v8.x ([ff4bb4d](https://github.com/lerna/lerna/commit/ff4bb4da215555e3bb136f5af09b5cbc631e57bb))
### BREAKING CHANGES
* Node v6.x & v8.x are no longer supported. Please upgrade to the latest LTS release.
Here's the gnarly one-liner I used to make these changes:
```
npx lerna exec --concurrency 1 --stream -- 'json -I -f package.json -e '"'"'this.engines=this.engines||{};this.engines.node=">= 10.18.0"'"'"
```
(requires `npm i -g json` beforehand)
# [3.21.0](https://github.com/lerna/lerna/compare/v3.20.2...v3.21.0) (2020-05-13)

@@ -8,0 +31,0 @@

6

command.js
"use strict";
const filterable = require("@lerna/filter-options");
const { filterOptions } = require("@lerna/filter-options");
const listable = require("@lerna/listable");

@@ -15,6 +15,6 @@

exports.builder = yargs => {
exports.builder = (yargs) => {
listable.options(yargs);
return filterable(yargs);
return filterOptions(yargs);
};

@@ -21,0 +21,0 @@

"use strict";
const Command = require("@lerna/command");
const { Command } = require("@lerna/command");
const listable = require("@lerna/listable");
const output = require("@lerna/output");
const { output } = require("@lerna/output");
const { getFilteredPackages } = require("@lerna/filter-options");

@@ -23,3 +23,3 @@

chain = chain.then(() => getFilteredPackages(this.packageGraph, this.execOpts, this.options));
chain = chain.then(filteredPackages => {
chain = chain.then((filteredPackages) => {
this.result = listable.format(filteredPackages, this.options);

@@ -26,0 +26,0 @@ });

{
"name": "@lerna/list",
"version": "3.21.0",
"version": "4.0.0",
"description": "List local packages",

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

"engines": {
"node": ">= 6.9.0"
"node": ">= 10.18.0"
},

@@ -36,8 +36,8 @@ "publishConfig": {

"dependencies": {
"@lerna/command": "3.21.0",
"@lerna/filter-options": "3.20.0",
"@lerna/listable": "3.18.5",
"@lerna/output": "3.13.0"
"@lerna/command": "4.0.0",
"@lerna/filter-options": "4.0.0",
"@lerna/listable": "4.0.0",
"@lerna/output": "4.0.0"
},
"gitHead": "3367257cabe1540a3b9468acbfa0d01ba391077d"
"gitHead": "4582c476e07dddddd6b2e3ab6e7f52c1f9eed59a"
}
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