Initial commit from template
This commit is contained in:
16
.claude/skills/dependency-scanner/audit.sh
Executable file
16
.claude/skills/dependency-scanner/audit.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
# Schneller Vulnerability Audit
|
||||
|
||||
set -e
|
||||
|
||||
# Package Manager erkennen
|
||||
if [ -f "pnpm-lock.yaml" ]; then
|
||||
echo "Fuehre pnpm audit aus..."
|
||||
pnpm audit
|
||||
elif [ -f "yarn.lock" ]; then
|
||||
echo "Fuehre yarn audit aus..."
|
||||
yarn audit
|
||||
else
|
||||
echo "Fuehre npm audit aus..."
|
||||
npm audit
|
||||
fi
|
||||
Reference in New Issue
Block a user