From 7663ca63f63cad12db9c6750e4ed017211583966 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Fri, 24 Jul 2026 23:57:25 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs:=20Fix=20Task=207=20Step=20?= =?UTF-8?q?2=20grep=20to=20match=20CSS-nesting=20unwrap?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/superpowers/plans/2026-07-24-services-content-blocks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/superpowers/plans/2026-07-24-services-content-blocks.md b/docs/superpowers/plans/2026-07-24-services-content-blocks.md index 70f2f10..39db4ce 100644 --- a/docs/superpowers/plans/2026-07-24-services-content-blocks.md +++ b/docs/superpowers/plans/2026-07-24-services-content-blocks.md @@ -512,7 +512,7 @@ Expected: completes with no errors. The output file `static/dist/theme.css` is u The build unwraps CSS-nesting `&__heading` into `__heading.services-list` (no literal `.services-list__heading` is emitted). Use a fixed-string search that matches the un-nested form: ```bash -grep -cF "services-list__heading" static/dist/theme.css +grep -cF "__heading.services-list" static/dist/theme.css ``` Expected: `1` or more. (Note: on Windows Git-Bash, prefer `grep -F` because POSIX `\\:` escapes are stripped before reaching grep.)