Skip to content

Commit 10d4a43

Browse files
committed
Slap a beta tag on it
1 parent 7722259 commit 10d4a43

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

src/commands/manifest/cmd-gradle.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import type { CliCommandConfig } from '../../utils/meow-with-subcommands'
1313
const config: CliCommandConfig = {
1414
commandName: 'gradle',
1515
description:
16-
'Use Gradle to generate a manifest file (`pom.xml`) for a Gradle/Java/Kotlin/etc project',
16+
'[beta] Use Gradle to generate a manifest file (`pom.xml`) for a Gradle/Java/Kotlin/etc project',
1717
hidden: false,
1818
flags: {
1919
...commonFlags,
@@ -76,6 +76,8 @@ const config: CliCommandConfig = {
7676
7777
- it works with your \`gradlew\` from your repo and local settings and config
7878
79+
Support is beta. Please report issues or give us feedback on what's missing.
80+
7981
Examples
8082
8183
$ ${parentName} ${config.commandName} .

src/commands/manifest/cmd-kotlin.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import type { CliCommandConfig } from '../../utils/meow-with-subcommands'
1818
const config: CliCommandConfig = {
1919
commandName: 'kotlin',
2020
description:
21-
'Use Gradle to generate a manifest file (`pom.xml`) for a Kotlin project',
21+
'[beta] Use Gradle to generate a manifest file (`pom.xml`) for a Kotlin project',
2222
hidden: false,
2323
flags: {
2424
...commonFlags,
@@ -81,6 +81,8 @@ const config: CliCommandConfig = {
8181
8282
- it works with your \`gradlew\` from your repo and local settings and config
8383
84+
Support is beta. Please report issues or give us feedback on what's missing.
85+
8486
Examples
8587
8688
$ ${parentName} ${config.commandName} .

src/commands/manifest/cmd-manifest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ const config: CliCommandConfig = {
2828
configurations available. See \`manifest <language> --help\` for usage details
2929
per language.
3030
31-
Currently supported language: scala, gradle
31+
Currently supported language: scala [beta], gradle [beta], kotlin (through
32+
gradle) [beta].
3233
3334
Examples
3435

src/commands/manifest/cmd-scala.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import type { CliCommandConfig } from '../../utils/meow-with-subcommands'
1111
const config: CliCommandConfig = {
1212
commandName: 'kotlin',
1313
description:
14-
"Generate a manifest file (`pom.xml`) from Scala's `build.sbt` file",
14+
"[beta] Generate a manifest file (`pom.xml`) from Scala's `build.sbt` file",
1515
hidden: false,
1616
flags: {
1717
...commonFlags,
@@ -71,6 +71,8 @@ const config: CliCommandConfig = {
7171
7272
You can optionally configure the path to the \`sbt\` bin to invoke.
7373
74+
Support is beta. Please report issues or give us feedback on what's missing.
75+
7476
Examples
7577
7678
$ ${parentName} ${config.commandName} ./build.sbt

0 commit comments

Comments
 (0)