11 lines
238 B
TOML
11 lines
238 B
TOML
[tasks.lint]
|
|
description = "lint and format project"
|
|
run = "poetry run ruff check && poetry run ruff format"
|
|
|
|
[tasks.build]
|
|
description = "build project"
|
|
run = "poetry build"
|
|
|
|
[tasks.dev]
|
|
description = "run dev version"
|
|
run = "./dev-beet" |