diff --git a/deps/npm/CHANGELOG.md b/deps/npm/CHANGELOG.md index 9e696a7c3e942c..8155d019159f5b 100644 --- a/deps/npm/CHANGELOG.md +++ b/deps/npm/CHANGELOG.md @@ -1,4 +1,23 @@ +## v7.9.0 (2021-04-08) + +### FEATURES + +* [`1f3e88eba`](/~https://github.com/npm/cli/commit/1f3e88ebaf4901d8f9f07b43404d824fef7e5ff5) + [#3032](/~https://github.com/npm/cli/issues/3032) + feat(dist-tag): add workspace support + ([@nlf](/~https://github.com/nlf)) +* [`6e31df4e7`](/~https://github.com/npm/cli/commit/6e31df4e7957337962fd3d93e495931e3592bb9e) + [#3033](/~https://github.com/npm/cli/issues/3033) + feat(pack): add workspace support + ([@wraithgar](/~https://github.com/wraithgar)) + +### DEPENDENCIES + +* [`ba4f7fea8`](/~https://github.com/npm/cli/commit/ba4f7fea8fca8e3509469a218f094fe69095888b) + `licensee@8.2.0` + ## v7.8.0 (2021-04-01) + ### FEATURES diff --git a/deps/npm/docs/content/commands/npm-dist-tag.md b/deps/npm/docs/content/commands/npm-dist-tag.md index 585da16ad2d2c4..158c3417e7cba3 100644 --- a/deps/npm/docs/content/commands/npm-dist-tag.md +++ b/deps/npm/docs/content/commands/npm-dist-tag.md @@ -88,6 +88,18 @@ semver as `>=1.4.0 <1.5.0`. See . The simplest way to avoid semver problems with tags is to use tags that do not begin with a number or the letter `v`. +### Configuration + +#### workspaces + +Only supported by `ls`. Enables listing dist-tags of all workspace +contexts defined in the current `package.json`. + +#### workspace + +Only supported by `ls`. Enables listing dist-tags of workspace contexts +limiting results to only those specified by this config item. + ### See Also * [npm publish](/commands/npm-publish) diff --git a/deps/npm/docs/content/commands/npm-pack.md b/deps/npm/docs/content/commands/npm-pack.md index cc6b669efb1ef6..de3eeb731a9e33 100644 --- a/deps/npm/docs/content/commands/npm-pack.md +++ b/deps/npm/docs/content/commands/npm-pack.md @@ -10,6 +10,25 @@ description: Create a tarball from a package npm pack [[<@scope>/]...] [--dry-run] ``` +### Configuration + +#### dry-run + +Do everything that pack usually does without actually packing anything. +That is, report on what would have gone into the tarball, but nothing +else. + +#### workspaces + +Enables workspaces context while creating tarballs. Tarballs for each +workspaces will be generated. + +#### workspace + +Enables workspaces context and limits results to only those specified by +this config item. Tarballs will only be generated for the packages +named in the workspaces given here. + ### Description For anything that's installable (that is, a package folder, tarball, @@ -23,10 +42,6 @@ overwritten the second time. If no arguments are supplied, then npm packs the current package folder. -The `--dry-run` argument will do everything that pack usually does without -actually packing anything. That is, it reports on what would have gone -into the tarball, but nothing else. - ### See Also * [npm-packlist package](http://npm.im/npm-packlist) diff --git a/deps/npm/docs/output/commands/npm-dist-tag.html b/deps/npm/docs/output/commands/npm-dist-tag.html index 41d39176fabd47..df397d0a120b93 100644 --- a/deps/npm/docs/output/commands/npm-dist-tag.html +++ b/deps/npm/docs/output/commands/npm-dist-tag.html @@ -141,7 +141,7 @@

npm-dist-tag

Table of contents

- +

Synopsis

@@ -208,6 +208,13 @@

Caveats

semver as >=1.4.0 <1.5.0. See /~https://github.com/npm/npm/issues/6082.

The simplest way to avoid semver problems with tags is to use tags that do not begin with a number or the letter v.

+

Configuration

+

workspaces

+

Only supported by ls. Enables listing dist-tags of all workspace +contexts defined in the current package.json.

+

workspace

+

Only supported by ls. Enables listing dist-tags of workspace contexts +limiting results to only those specified by this config item.

See Also