summaryrefslogtreecommitdiff
path: root/Magefile.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-16 23:01:59 +0200
committerPaul Buetow <paul@buetow.org>2026-03-16 23:01:59 +0200
commited32c7fea5ad0fefccab9c99a51ebdae13b3a2f2 (patch)
tree583f793af4287444346ff63d4a448625cc2346c9 /Magefile.go
parent57a7b5961037eb565d9cddc324bd0246daff440b (diff)
bump version to v0.2.0v0.2.0
- Add REPL mode with vi keybindings - Add built-in commands (help, clear, quit/exit) - Add mage repl target Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'Magefile.go')
-rw-r--r--Magefile.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/Magefile.go b/Magefile.go
index bf51250..d5e5f91 100644
--- a/Magefile.go
+++ b/Magefile.go
@@ -23,3 +23,7 @@ func Test() error {
func Install() error {
return sh.RunV("go", "install", "./cmd/perc")
}
+
+func Repl() error {
+ return sh.RunV("go", "run", "./cmd/perc", "--repl")
+}