260223:1415 20260223 nextJS & nestJS Best pratices
All checks were successful
Build and Deploy / deploy (push) Successful in 4m44s
All checks were successful
Build and Deploy / deploy (push) Successful in 4m44s
This commit is contained in:
16
.agents/skills/nestjs-best-practices/scripts/build.sh
Normal file
16
.agents/skills/nestjs-best-practices/scripts/build.sh
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Build script for generating AGENTS.md
|
||||
# Usage: ./build.sh
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
cd "$SCRIPT_DIR"
|
||||
|
||||
# Check if ts-node is available
|
||||
if command -v npx &> /dev/null; then
|
||||
echo "Running build with ts-node..."
|
||||
npx ts-node build-agents.ts
|
||||
else
|
||||
echo "Error: npx not found. Please install Node.js."
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user