Denis 346b78aee1 first commit vor 2 Jahren
..
lib 346b78aee1 first commit vor 2 Jahren
CHANGELOG.md 346b78aee1 first commit vor 2 Jahren
LICENSE 346b78aee1 first commit vor 2 Jahren
README.md 346b78aee1 first commit vor 2 Jahren
package.json 346b78aee1 first commit vor 2 Jahren

README.md

@lerna/log-packed

Log the result of npm pack --json

Extracted from the npm source.

Usage

const execa = require("execa");
const { logPacked } = require("@lerna/log-packed");

execa("npm", ["pack", "--json"]).then(result => {
  const tarballs = JSON.parse(result.stdout);
  tarballs.forEach(logPacked);
});

Install lerna for access to the lerna CLI.