|
hace 2 años | |
---|---|---|
.. | ||
lib | hace 2 años | |
CHANGELOG.md | hace 2 años | |
LICENSE | hace 2 años | |
README.md | hace 2 años | |
package.json | hace 2 años |
@lerna/log-packed
Log the result of npm pack --json
Extracted from the npm source.
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.