aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-01-23 23:09:34 -0800
committerFuwn <[email protected]>2026-01-23 23:13:50 -0800
commit42b1ca5d12ff53f94c9a505504d85488ac33ea27 (patch)
treef8b5fad6203bdc7150e8157c89141c1317b03649
parentrefactor(lib): Migrate simple components to Svelte 5 runes syntax (diff)
downloaddue.moe-42b1ca5d12ff53f94c9a505504d85488ac33ea27.tar.xz
due.moe-42b1ca5d12ff53f94c9a505504d85488ac33ea27.zip
chore(justfile): Add additional utility tasks
-rw-r--r--justfile16
1 files changed, 11 insertions, 5 deletions
diff --git a/justfile b/justfile
index 342fc030..5b760885 100644
--- a/justfile
+++ b/justfile
@@ -1,12 +1,18 @@
+package_manager := "pnpm"
+
+alias fmt := format
+
default:
@just --list
dev:
- bun run dev --host
+ {{ package_manager }} run dev --host
check:
- bun --bun run check
+ {{ package_manager }} run check
+
+format:
+ {{ package_manager }} run format
-vpn:
- piactl disconnect
- piactl connect
+fc:
+ just format check