c513c43a52
So that they can be run standalone and not just through Mise
20 lines
451 B
Bash
Executable File
20 lines
451 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#MISE description="Update dependencies. Errors at the firsst outdated dependency"
|
|
|
|
set -e
|
|
|
|
source "$(dirname "$0")/../_helpers.sh"
|
|
|
|
ensure_working_directory!
|
|
|
|
npm update --prefix assets
|
|
|
|
mix do tailwind.update_version, esbuild.update_version, sqlean.update_version
|
|
|
|
mix deps.update --all
|
|
|
|
mix usage_rules.sync AGENTS.md --all --inline usage_rules:all --link-to-folder deps --remove-missing --yes
|
|
|
|
gh extension upgrade gfm-preview
|