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
|`--access`|`public`, `restricted`| Overrides the access level of the published package. Unscoped packages cannot be set to restricted. See the npm publish documentation for more information. |
115
116
|`--all`| boolean |[deprecated]`run-many` runs all targets on all projects in the workspace if no projects are provided. This option is no longer required. (Default: `true`) |
116
117
|`--exclude`| string | Exclude certain projects from being processed |
|`--base`| string | Base of the current branch (usually main) |
148
+
|`--bump`|`major`, `premajor`, `minor`, `preminor`, `patch`, `prepatch`, `prerelease`| Semver keyword to use for the selected release group. |
149
+
|`--exclude`| string | Exclude certain projects from being processed |
150
+
|`--files`| string | Change the way Nx is calculating the affected command by providing directly changed files, list of files delimited by commas or spaces |
151
+
|`--head`| string | Latest commit of the current branch (usually HEAD) |
152
+
|`--help`| boolean | Show help |
153
+
|`--message`| string | Custom message to use for the changelog entry |
154
+
|`--onlyTouched`| boolean | Only include projects that have been affected by the current changes (Default: `true`) |
155
+
|`--uncommitted`| boolean | Uncommitted changes |
156
+
|`--untracked`| boolean | Untracked changes |
157
+
|`--version`| boolean | Show version number |
158
+
159
+
### plan:check
160
+
161
+
Ensure that all touched projects have an applicable version plan created for them
|`--base`| string | Base of the current branch (usually main) |
172
+
|`--exclude`| string | Exclude certain projects from being processed |
173
+
|`--files`| string | Change the way Nx is calculating the affected command by providing directly changed files, list of files delimited by commas or spaces |
174
+
|`--head`| string | Latest commit of the current branch (usually HEAD) |
Copy file name to clipboardExpand all lines: docs/generated/packages/js/executors/release-publish.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,11 @@
20
20
"type": "string",
21
21
"description": "The distribution tag to apply to the published package."
22
22
},
23
+
"access": {
24
+
"type": "string",
25
+
"enum": ["public", "restricted"],
26
+
"description": "Overrides the access level of the published package. Unscoped packages cannot be set to restricted. See the npm publish documentation for more information."
27
+
},
23
28
"dryRun": {
24
29
"type": "boolean",
25
30
"description": "Whether to run the command without actually publishing the package to the registry."
0 commit comments