diff options
| author | Fuwn <[email protected]> | 2026-01-23 23:09:34 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-23 23:13:50 -0800 |
| commit | 42b1ca5d12ff53f94c9a505504d85488ac33ea27 (patch) | |
| tree | f8b5fad6203bdc7150e8157c89141c1317b03649 | |
| parent | refactor(lib): Migrate simple components to Svelte 5 runes syntax (diff) | |
| download | due.moe-42b1ca5d12ff53f94c9a505504d85488ac33ea27.tar.xz due.moe-42b1ca5d12ff53f94c9a505504d85488ac33ea27.zip | |
chore(justfile): Add additional utility tasks
| -rw-r--r-- | justfile | 16 |
1 files changed, 11 insertions, 5 deletions
@@ -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 |