mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
15 lines
336 B
Bash
Executable File
15 lines
336 B
Bash
Executable File
##!/bin/bash
|
|
|
|
# Update dependencies in root directory
|
|
echo "Updating dependencies in root directory..."
|
|
|
|
bun update --latest
|
|
|
|
# Update dependencies in packages and apps directories
|
|
for dir in ./packages/* ./apps/*; do
|
|
if [ -d "$dir" ]; then
|
|
echo "Updating dependencies in $dir..."
|
|
(cd "$dir" && bun update --latest)
|
|
fi
|
|
done
|