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