File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
src/main/kotlin/io/redgreen/tumbleweed/cli Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ Understand and break down large classes without breaking a sweat 😓
1111Build the project first and then run the command line tool.
1212
1313``` bash
14- $ tumbleweed view io.redgreen.ExampleClass
14+ $ twd view io.redgreen.ExampleClass
1515```
1616
1717The command will start a web server on port 7070. Go to ` localhost:7070 ` in your browser to see the diagram.
1818
19- For more options, run ` tumbleweed --help` .
19+ For more options, run ` twd --help` .
2020
2121## Known issues
2222
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66}
77
88application {
9- applicationName = " tumbleweed "
9+ applicationName = " twd "
1010 mainClassName = " io.redgreen.tumbleweed.cli.MainKt"
1111}
1212
@@ -20,7 +20,7 @@ tasks.withType<Jar> {
2020
2121tasks {
2222 named<ShadowJar >(" shadowJar" ) {
23- archiveBaseName.set(" tumbleweed " )
23+ archiveBaseName.set(" twd " )
2424 mergeServiceFiles()
2525 }
2626}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import io.redgreen.tumbleweed.cli.commands.ViewCommand
44import picocli.CommandLine.Command
55
66@Command(
7- name = " tumbleweed " ,
7+ name = " twd " ,
88 subcommands = [
99 ViewCommand ::class ,
1010 ],
Original file line number Diff line number Diff line change 33set -e
44
55./gradlew :cli:installDist -q
6- ./cli/build/install/tumbleweed /bin/tumbleweed $*
6+ ./cli/build/install/twd /bin/twd $*
You can’t perform that action at this time.
0 commit comments