7 lines
182 B
Plaintext
Executable File
7 lines
182 B
Plaintext
Executable File
# Check if lockfile needs updating
|
|
if git diff --cached --name-only | grep -q "^package.json$"; then
|
|
echo "🔒 Updating lockfile..."
|
|
pnpm lock
|
|
git add pnpm-lock.yaml
|
|
fi
|