From e7ae41362e269d5fe58bed8e5212e166c9d8465d Mon Sep 17 00:00:00 2001 From: Anders Olsson Date: Fri, 5 Jun 2026 17:00:09 +0200 Subject: [PATCH] chore: add 'just storybook' recipe Co-Authored-By: Claude Opus 4.8 (1M context) --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index c204c38..6570bb5 100644 --- a/justfile +++ b/justfile @@ -16,5 +16,9 @@ fmt: lint: cargo clippy --workspace --all-targets -- -D warnings +# Run Storybook (web component explorer) on http://localhost:6006 +storybook: + cd web && pnpm storybook + # Format, lint, and test check: fmt lint test