feat: add --export-template cli option

This commit is contained in:
Nathaniel Landau
2023-03-21 17:40:13 -04:00
parent 4e053bda29
commit 08999cb055
6 changed files with 61 additions and 25 deletions

View File

@@ -143,7 +143,7 @@ for group in groups:
notice(
f"Updating {p} from {packages[p]['current_version']} to {packages[p]['new_version']}"
)
sh.poetry("add", f"{p}@{packages[p]['new_version']}", "--group", group, _fg=True)
sh.poetry("add", f"{p}@latest", "--group", group, _fg=True)
sh.poetry("update", _fg=True)
success("All dependencies are up to date")