-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* switch to uv * fix uv command * add ruff to deps * fix things * una as subdir * working * release
- Loading branch information
Showing
34 changed files
with
918 additions
and
348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
all: fmt lint check test | ||
|
||
fmt: | ||
@uv run ruff format | ||
|
||
fmt-check: | ||
@uv run ruff format --check | ||
|
||
lint: | ||
@uv run ruff check --fix | ||
|
||
lint-check: | ||
@uv run ruff check | ||
|
||
check: | ||
@uv run basedpyright | ||
|
||
test: | ||
@uv run pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
# Usage | ||
The CLI has a few commands and options, have a look: | ||
```bash | ||
rye run una --help | ||
uv run una --help | ||
|
||
Usage: una [OPTIONS] COMMAND [ARGS]... | ||
|
||
╭─ Options ───────────────────────────────────────────────────────────────╮ | ||
│ --help Show this message and exit. │ | ||
╰─────────────────────────────────────────────────────────────────────────╯ | ||
╭─ Commands ──────────────────────────────────────────────────────────────╮ | ||
│ create Commands for creating a workspace, apps, libs and projects. │ | ||
│ diff Shows changed int_deps compared to the latest git tag. │ | ||
│ info Info about the Una workspace. │ | ||
│ sync Update pyproject.toml with missing int_deps. │ | ||
╰─────────────────────────────────────────────────────────────────────────╯ | ||
╭─ Options ─────────────────────────────────────────────╮ | ||
│ --help Show this message and exit. │ | ||
╰───────────────────────────────────────────────────────╯ | ||
╭─ Commands ────────────────────────────────────────────╮ | ||
│ create Commands for creating workspace and packages.│ | ||
│ sync Update packages with missing dependencies. │ | ||
╰───────────────────────────────────────────────────────╯ | ||
``` |
Oops, something went wrong.