Files
pit/pit.nimble
Jonathan Bernard 1d18be9d1b Include issues without project or milestone on boards.
In order to help organize issues, show issues on boards even if they
don't have an assigned project or milestone.

Refactor the issue hiding feature (using the `hide-until` property) to
be an option to IssueFilter rather than a separate, special-case. This
means that the CLI always filters by default.

Hide issues in the Done state on project boards unless the new
`--show-done` arg is passed.
2025-12-01 13:50:13 -06:00

30 lines
651 B
Nim

# Package
version = "4.31.1"
author = "Jonathan Bernard"
description = "Personal issue tracker."
license = "MIT"
srcDir = "src"
installExt = @["nim"]
bin = @["pit"]
# Dependencies
requires @[
"nim >= 1.4.0",
"docopt >= 0.7.1",
"uuids >= 0.1.10",
"zero_functional"
]
# Dependencies from git.jdb-software.com/jdb/nim-packages
requires @[
"cliutils >= 0.10.2",
"langutils >= 0.4.0",
"timeutils >= 0.5.4",
"data_uri > 1.0.0",
"update_nim_package_version >= 0.2.0"
]
task updateVersion, "Update the version of this package.":
exec "update_nim_package_version pit 'src/pit/cliconstants.nim'"