Files
music_library/scripts/dev/outdated
T
2025-10-09 08:49:26 +02:00

23 lines
535 B
Bash
Executable File

#!/usr/bin/env bash
#MISE description="Show outdated dependencies. Errors at the firsst outdated dependency"
set -e
source "$(git rev-parse --show-toplevel)/scripts/_helpers.sh"
ensure_working_directory!
debug_msg "Checking outdated NPM dependencies..."
npm outdated --prefix assets
debug_msg "Checking outdated tooling (tailwind, esbuild, sqlean)..."
# shellcheck disable=SC1010
mix do tailwind.check_version, esbuild.check_version, sqlean.check_version
debug_msg "Checking outdated mix dependencies"
mix hex.outdated --all