Skip to content

Commit e147c93

Browse files
committed
fix(skill): update updating skill to use pnpm run update and check --all
- Use `pnpm run update` instead of fallback to `pnpm update` - Add `pnpm run fix --all` before validation - Change `pnpm run check` to `pnpm run check --all`
1 parent 0237991 commit e147c93

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.claude/skills/updating/SKILL.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ git status --porcelain
7777
### Phase 2: Update npm Packages
7878

7979
<action>
80-
Run pnpm update to update npm dependencies:
80+
Run pnpm run update to update npm dependencies:
8181
</action>
8282

8383
```bash
@@ -124,7 +124,8 @@ if [ "$CI_MODE" = "true" ]; then
124124
echo "Commits created - ready for push by CI workflow"
125125
else
126126
echo "Interactive mode: Running full validation..."
127-
pnpm run build:cli
127+
pnpm run fix --all
128+
pnpm run check --all
128129
pnpm test
129130
fi
130131
```

0 commit comments

Comments
 (0)