1.0.0 • Published 2 years ago

better-lerna-audit v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

npm.io

Lerna Audit

Micro util to run better-npm-audit for lerna packages (with autofix).

Inspired (and forked) from https://github.com/tnobody/lerna-audit. Because of the usage of better-npm-audit instead of npm audit we cannot fix the issues in the package.json automatically.

How to use

Install

In the root of your lerna monorepo run:

npm i better-lerna-audit -D

or

yarn add better-lerna-audit -D

Use

In the root of your lerna monorepo run:

npx better-lerna-audit [OPTIONS]

Or add a script to your package.json in root:

{
  "scripts": {
    "audit": "better-lerna-audit"
  }
}

Options

Same options as described here.

Why

Lerna works in a way that it manages "internal" dependencies within your monorepo by managing all relevant npm link commands for you in local development. So you can keep the dependencies to other packages in the monorepo in your package.json while linking the latest versions during development. The downside is that all commands that depend on the dependencies defined in package.jsons will fail because "internal" packages are just linked and not yet published. One of this commands is npm audit because it tires to analyse the dependency tree. better-lerna-audit mimics the behavior of lerna - removing internal packages from package.json, run the command, restore package.json - to run a npm fix in every lerna managed package.