From 53e2611365d98d42d3c6f7aca2574768963f1a91 Mon Sep 17 00:00:00 2001 From: Dion Amago Date: Sat, 2 Nov 2024 10:41:06 -0700 Subject: [PATCH] justfile --- justfile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index 92b8bc88..4344f34d 100644 --- a/justfile +++ b/justfile @@ -7,13 +7,17 @@ set shell := ["bash", "-c"] set dotenv-load := true # TODO: bold doesn't work, and it used to. What happened? -bold := '\033[1m' -normal := '\033[0m' -blue := '\033[0;34m' +bold := '\033[1m' +normal := '\033[0m' +green := "\\e[32m" +yellow := "\\e[33m" +blue := "\\e[34m" +magenta := "\\e[35m" +grey := "\\e[90m" _help: #!/usr/bin/env bash - just --list --unsorted --list-heading $'🚪 Commands root level: (simple, reliable, probably slow)\n\n' + just --list --unsorted --list-heading $'🚪 Commands for {{green}}https://github.com/metapages/metapage{{normal}}:\n\n' echo -e "" echo -e " 🔽 {{bold}}Sub-commands: ( just ){{normal}}" echo -e " app {{blue}}#lib and worker commands{{normal}}"