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
"comment": "Implement \"layer\" pack style. Also handle all topological package sorting internally, and update the logic to ignore devDependencies since they can't cause breakages.",
Copy file name to clipboardExpand all lines: docs/overview/configuration.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,8 @@ For the latest full list of supported options, see `RepoOptions` [in this file](
94
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
+
|`packStyle`|`'sequential' \| 'layer'`|`'sequential'`| repo | With `packToPath`, how to organize the tgz files. `'sequential'` uses numeric prefixes to ensure topological ordering. `'layer'` groups the packages into numbered subfolders based on dependency tree layers. |
98
+
|`packToPath`|`string`|| repo | Instead of publishing to npm, pack packages to tgz files under the specified path. |
97
99
|`publish`|`boolean`|`true`| repo | Whether to publish to npm registry |
98
100
|`push`|`boolean`|`true`| repo | Whether to push to the remote git branch |
99
101
|`registry`|`string`|| repo | Publish to this npm registry |
0 commit comments