This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# dev-start.sh — auto-detect and run any dev project | |
echo "Detecting project type..." | |
sleep 0.3 | |
# --- JavaScript projects --- | |
if [ -f "package.json" ]; then | |
# detect package manager | |
if [ -f "bun.lockb" ]; then |