Skip to content

Commit 6e268dc

Browse files
committed
chore(e2e): Modify e2e skill to also account for untracked files
1 parent ac5e91e commit 6e268dc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.claude/skills/e2e/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Extract the test app name from user input:
3131
If the user recently edited files in `packages/*`, identify which packages were modified:
3232

3333
```bash
34-
# Check which packages have uncommitted changes
35-
git status --porcelain | grep "^[ MARC][ MD] packages/" | cut -d'/' -f2 | sort -u
34+
# Check which packages have uncommitted changes (including untracked files)
35+
git status --porcelain | grep "^[ MARC?][ MD?] packages/" | cut -d'/' -f2 | sort -u
3636
```
3737

3838
For each modified package, rebuild its tarball:

0 commit comments

Comments
 (0)