From 415934e0bf06fe2e1651d878babb51324be9291b Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Fri, 24 Jul 2026 23:54:15 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs:=20Fix=20Task=207=20verific?= =?UTF-8?q?ation=20greps=20for=20Windows=20Git-Bash?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2026-07-24-services-content-blocks.md | 20 +++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) 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 a69119c..70f2f10 100644 --- a/docs/superpowers/plans/2026-07-24-services-content-blocks.md +++ b/docs/superpowers/plans/2026-07-24-services-content-blocks.md @@ -509,13 +509,25 @@ Expected: completes with no errors. The output file `static/dist/theme.css` is u - [ ] **Step 2: Verify the services-list CSS classes are in the built output** -Run: `grep -c "services-list__heading" static/dist/theme.css` -Expected: `1` or more (the class should appear in the built CSS). +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 +``` + +Expected: `1` or more. (Note: on Windows Git-Bash, prefer `grep -F` because POSIX `\\:` escapes are stripped before reaching grep.) - [ ] **Step 3: Verify the dynamic grid classes are in the built output** -Run: `grep -E "lg\\\\:grid-cols-(2|3|4) " static/dist/theme.css | wc -l` -Expected: `3` (all three column counts should be present). +Same Windows-shell caveat. Use fixed-string search: + +```bash +grep -cF "lg\:grid-cols-2" static/dist/theme.css +grep -cF "lg\:grid-cols-3" static/dist/theme.css +grep -cF "lg\:grid-cols-4" static/dist/theme.css +``` + +Expected: each returns `1` or more. - [ ] **Step 4: Commit the rebuilt dist**