diff --git a/bases/polylith/cli/core.py b/bases/polylith/cli/core.py index fa89d4a..af4eae4 100644 --- a/bases/polylith/cli/core.py +++ b/bases/polylith/cli/core.py @@ -12,6 +12,7 @@ create.app, name="create", help="Commands for creating a workspace, bases, components and projects.", + no_args_is_help=True, ) @@ -19,12 +20,14 @@ build.app, name="build", help="For Package & Dependency Management tools without support for plugins or build hooks.", + no_args_is_help=True, ) app.add_typer( test.app, name="test", help="Commands for tests.", + no_args_is_help=True, ) diff --git a/projects/polylith_cli/pyproject.toml b/projects/polylith_cli/pyproject.toml index f3897cf..9a6f4e7 100644 --- a/projects/polylith_cli/pyproject.toml +++ b/projects/polylith_cli/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "polylith-cli" -version = "1.27.1" +version = "1.28.0" description = "Python tooling support for the Polylith Architecture" authors = ['David Vujic'] homepage = "https://davidvujic.github.io/python-polylith-docs/"