You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In large monorepos, the process of fetching versions for sync or before publishing can be time-consuming due to the high number of packages. To optimize performance, you can override the concurrency for fetching from the registry by setting `options.npmReadConcurrency` (default: 10). You can also increase concurrency for hook calls and publish operations via `options.concurrency` (default: 1; respects topological order).
96
+
In large monorepos, the process of fetching versions for sync or before publishing can be time-consuming due to the high number of packages. To optimize performance, you can override the concurrency for fetching from the registry by setting `options.npmReadConcurrency` (default: 5). You can also increase concurrency for hook calls and publish operations via `options.concurrency` (default: 1; respects topological order).
"comment": "Revert to using npm CLI for fetching package info due to vulnerability in older `npm-registry-fetch`'s old `tar` dependency (updating would require a major change to bump beachball's minimum Node version)",
Copy file name to clipboardExpand all lines: docs/overview/configuration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ For the latest full list of supported options, see `RepoOptions` [in this file](
91
91
|`groupChanges`|`boolean`|`false`| repo | Write multiple changes to a single change file |
92
92
|`hooks`|[`HooksOptions`][4]|| repo | Hooks for custom pre/post publish actions |
93
93
|`ignorePatterns`|`string[]`|| repo | Ignore changes in files matching these glob patterns ([see notes][6]) |
94
-
|`npmReadConcurrency`| number |10| repo | Maximum concurrency for fetching package versions from the registry (see `concurrency` for write operations) |
94
+
|`npmReadConcurrency`| number |5| repo | Maximum concurrency for fetching package versions from the registry (see `concurrency` for write operations) |
95
95
|`package`|`string`|| repo | Specifies which package the command relates to (overrides change detection based on `git diff`) |
96
96
|`prereleasePrefix`|`string`|| repo | Prerelease prefix, e.g. `"beta"`. Note that if this is specified, packages with change type major/minor/patch will be bumped as prerelease instead. |
97
97
|`publish`|`boolean`|`true`| repo | Whether to publish to npm registry |
0 commit comments