From 8d6b8891228615f7c2860504c3b24636d576ce02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Sat, 15 Aug 2026 20:12:35 -0700 Subject: [PATCH] refactor: consume the flat just module Imports just/just.just and renames just::fmt call sites to just-fmt. The shim is removed upstream. Depends on osapi-justfiles#57. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/just-lint.yml | 2 +- justfile | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/just-lint.yml b/.github/workflows/just-lint.yml index 74a2ee3..1c0b935 100644 --- a/.github/workflows/just-lint.yml +++ b/.github/workflows/just-lint.yml @@ -17,4 +17,4 @@ jobs: - name: Fetch justfiles run: just fetch - name: Lint justfiles - run: just just::fmt-check + run: just just-fmt-check diff --git a/justfile b/justfile index e17abd4..1defda9 100644 --- a/justfile +++ b/justfile @@ -3,7 +3,7 @@ import? '.just/remote/md.just' -mod? just '.just/remote/just.mod.just' +import? '.just/remote/just.just' # --- Fetch --- @@ -11,8 +11,7 @@ mod? just '.just/remote/just.mod.just' fetch: mkdir -p .just/remote curl -sSfL https://raw.githubusercontent.com/osapi-io/osapi-justfiles/refs/heads/main/md/md.just -o .just/remote/md.just - curl -sSfL https://raw.githubusercontent.com/osapi-io/osapi-justfiles/refs/heads/main/just.mod.just -o .just/remote/just.mod.just - curl -sSfL https://raw.githubusercontent.com/osapi-io/osapi-justfiles/refs/heads/main/just.just -o .just/remote/just.just + curl -sSfL https://raw.githubusercontent.com/osapi-io/osapi-justfiles/refs/heads/main/just/just.just -o .just/remote/just.just # --- Specs --- @@ -25,10 +24,10 @@ validate: # Run all checks test: just md-fmt-check - just just::fmt-check + just just-fmt-check just validate # Format and lint before committing ready: just md-fmt - just just::fmt + just just-fmt