Files
schpet__linear-cli/justfile
T
2025-02-04 10:27:32 -08:00

16 lines
541 B
Makefile

dev *args:
deno run main.ts {{ args }}
# release a major, minor or patch version
release level:
svbump {{ level }} version deno.json
svbump "$(svbump read version deno.json)" package.version dist-workspace.toml
git commit deno.json dist-workspace.toml -m "chore: Release linear-cli version $(svbump read version deno.json)"
git tag "v$(svbump read version deno.json)"
@echo "tagged v$(svbump read version deno.json)"
@echo
@echo "run this to release it:"
@echo
@echo " git push origin HEAD --tags"