From fc9076a68769bcc9c0fa830949f66bc5f3926919 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 16 Nov 2025 05:54:14 +0000 Subject: [PATCH] Add pro tip for parallel compilation in setup docs Adds a note to claude-code-web.md recommending users start stack build in the background immediately after setup. Since most build time is spent compiling dependencies rather than project code, this allows developers to make edits while the initial compilation runs in parallel. --- cli/docs/claude-code-web.md | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/docs/claude-code-web.md b/cli/docs/claude-code-web.md index 3e36d23..b97577b 100644 --- a/cli/docs/claude-code-web.md +++ b/cli/docs/claude-code-web.md @@ -65,6 +65,7 @@ stack exec graph -- --help - Downloads ~200MB of GHC (takes 2-5 minutes) - Compiles all dependencies (takes 5-10 minutes) - Subsequent builds are much faster (seconds to minutes) +- **Pro tip:** Start `stack build --fast` in the background immediately after setup, then begin making edits while dependencies compile. Most of the build time is compiling dependencies (not your code), so you can work in parallel. ## Troubleshooting