c513c43a52
So that they can be run standalone and not just through Mise
16 lines
316 B
Bash
Executable File
16 lines
316 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#MISE description="Show outdated dependencies. Errors at the firsst outdated dependency"
|
|
|
|
set -e
|
|
|
|
source "$(dirname "$0")/../_helpers.sh"
|
|
|
|
ensure_working_directory!
|
|
|
|
npm outdated --prefix assets
|
|
|
|
mix do tailwind.check_version, esbuild.check_version, sqlean.check_version
|
|
|
|
mix hex.outdated --all
|