We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac5e91e commit e0ee7b4Copy full SHA for e0ee7b4
.claude/skills/e2e/SKILL.md
@@ -31,8 +31,8 @@ Extract the test app name from user input:
31
If the user recently edited files in `packages/*`, identify which packages were modified:
32
33
```bash
34
-# Check which packages have uncommitted changes
35
-git status --porcelain | grep "^[ MARC][ MD] packages/" | cut -d'/' -f2 | sort -u
+# Check which packages have uncommitted changes (including untracked files)
+git status --porcelain | grep "^[ MARC?][ MD?] packages/" | cut -d'/' -f2 | sort -u
36
```
37
38
For each modified package, rebuild its tarball:
0 commit comments