@yoitsro/lerna-log-packed
v3.5.0
Published
Log the result of npm pack --json
Downloads
4
Readme
@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);
});