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
| --automatic | If an automated release should be performed, useful for CI environments |`false`|`Boolean`| No ||
265
+
| --clean | If the project should be cleaned |`true`|`Boolean`| No ||
266
+
| --dist-tag | dist-tag to be used when publishing to npm |`"latest"`|`String`| No | Yes |
267
+
| --draft | If the GitHub release should be done as a draft or not |`true`|`Boolean`| No ||
268
+
| --from | Manually specify from which commit the status generation should be performed, by default all commits ||`String`| No | Yes |
269
+
| --git | If project commits should be created |`true`|`Boolean`| No ||
270
+
| --github | If a GitHub release should be made, will read from GITHUB_AUTH if true or use the value provided to the option |`true`|`Boolean / String`| No ||
271
+
| --prerelease | If a prerelease should be done, and what name that should be used for the tag, will default to "alpha" |`false`|`Boolean / String`| No ||
272
+
| --publish | If projects should be published |`true`|`Boolean`| No ||
273
+
| --push | If commits should be pushed to the remote |`true`|`Boolean`| No ||
274
+
| --tag | If git tags should be created |`true`|`Boolean`| No ||
252
275
253
276
#### Settings options
254
277
_All groups are available._
@@ -312,9 +335,16 @@ roc repo status [projects]
312
335
313
336
#### Arguments
314
337
315
-
| Name | Description | Default | Type | Required | Can be empty |
| --from | Manually specify from which commit the status generation should be performed, by default all commits ||`String`| No | Yes |
347
+
| --prerelease | If a prerelease should be done, and what name that should be used for the tag, will default to "alpha" |`false`|`Boolean / String`| No ||
| babelPresetEnv | Configuration to be used with babel-preset-env | repo.babelPresetEnv | --repo-babelPresetEnv |`{}`|`Object()`| No | Yes | roc-plugin-repo |
8
-
| input | Location of the code that should run through Babel. | repo.input | --repo-input |`"src"`|`Filepath`| No | Yes | roc-plugin-repo |
9
-
| mono | Directories that should be scanned for projects or false to disable monorepo support. | repo.mono | --repo-mono |`["packages","extensions"]`|`Array(Filepath) / false`| No || roc-plugin-repo |
10
-
| npmBinary | What npm binary to use, can be "yarn" for example. | repo.npmBinary | --repo-npmBinary |`"npm"`|`String`| No | Yes | roc-plugin-repo |
11
-
| output | Location of where the compiled code should be saved. | repo.output | --repo-output |`"lib"`|`Filepath`| No | Yes | roc-plugin-repo |
12
-
| targets | The possible build targets. | repo.targets | --repo-targets |`["cjs","esm"]`| `Array(/cjs|esm/)` | No | Yes | roc-plugin-repo |
13
-
| test | Glob patterns for where tests can be found. | repo.test | --repo-test | `["**/__tests__/**/*.js?(x)","**/(*.)(spec|test).js?(x)"]` |`Array(String)`| No | Yes | roc-plugin-repo |
5
+
| Name | Description | Path | CLI option | Default | Type | Required | Can be empty | Extensions |
| babelPresetEnv | Configuration to be used with babel-preset-env | repo.babelPresetEnv | --repo-babelPresetEnv |`{}`|`Object()`| No | Yes | roc-plugin-repo |
8
+
| input | Location of the code that should run through Babel. | repo.input | --repo-input |`"src"`|`Filepath`| No | Yes | roc-plugin-repo |
9
+
| mono | Directories that should be scanned for projects or false to disable monorepo support. | repo.mono | --repo-mono |`["packages","extensions"]`|`Array(Filepath) / false`| No || roc-plugin-repo |
10
+
| npmBinary | What npm binary to use, can be "yarn" for example. | repo.npmBinary | --repo-npmBinary |`"npm"`|`String`| No | Yes | roc-plugin-repo |
11
+
| output | Location of where the compiled code should be saved. | repo.output | --repo-output |`"lib"`|`Filepath`| No | Yes | roc-plugin-repo |
12
+
| targets | The possible build targets. | repo.targets | --repo-targets |`["cjs","esm"]`| `Array(/cjs|esm/)` | No | Yes | roc-plugin-repo |
13
+
| test | Glob patterns for where tests can be found. | repo.test | --repo-test | `["**/__tests__/**/*.js?(x)","**/(*.)(spec|test).js?(x)"]` |`Array(String)`| No | Yes | roc-plugin-repo |
14
+
15
+
### Release
16
+
17
+
| Name | Description | Path | CLI option | Default | Type | Required | Can be empty | Extensions |
| collectedRelease | Should be a template string if collected releases should be performed for monorepos or false if not. | repo.release.collectedRelease | --repo-release-collectedRelease |`"[name:2:a].[hash:6].[date:yyyy-mm-dd]"`|`false / String`| No || roc-plugin-repo |
0 commit comments