Migrate deps:outdated to dev:outdated in standalone script

This commit is contained in:
Claudio Ortolina
2025-10-06 18:04:40 +03:00
parent 0a0f64978f
commit a573dc8427
2 changed files with 11 additions and 34 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
#MISE description="Show outdated dependencies. Errors at the firsst outdated dependency"
set -e
npm outdated --prefix assets
mix do tailwind.check_version, esbuild.check_version, sqlean.check_version
mix hex.outdated --all
-34
View File
@@ -23,10 +23,6 @@ hide = true
run = 'npm update --prefix assets'
hide = true
[tasks.npm-outdated]
run = 'npm outdated --prefix assets'
hide = true
# TAILWIND DEP
[tasks.tailwind-update]
@@ -34,11 +30,6 @@ description = 'Update the Tailwind version configured in the project'
run = 'mix tailwind.update_version'
hide = true
[tasks.tailwind-outdated]
description = 'Checks that the Tailwind version is up to date'
run = 'mix tailwind.check_version'
hide = true
# ESBUILD DEP
[tasks.esbuild-update]
@@ -46,11 +37,6 @@ description = 'Update the esbuild version configured in the project'
run = 'mix esbuild.update_version'
hide = true
[tasks.esbuild-outdated]
description = 'Checks that the esbuild version is up to date'
run = 'mix esbuild.check_version'
hide = true
# MIX DEPS
[tasks.mix-update]
@@ -58,11 +44,6 @@ description = 'Update mix dependencies'
run = ['mix deps.update --all']
hide = true
[tasks.mix-outdated]
description = 'Show outdated mix dependencies'
run = ['mix hex.outdated --all']
hide = true
# SQLEAN EXTENSIONS
[tasks.sqlean-update]
@@ -70,11 +51,6 @@ description = 'Update the sqlite3 extensions configured in the project'
run = ['mix sqlean.update_version']
hide = true
[tasks.sqlean-outdated]
description = 'Checks the sqlite extensions version is up to date'
run = ['mix sqlean.check_version']
hide = true
# TOOLING
[tasks.gh-markdown-preview-extension-update]
@@ -86,16 +62,6 @@ hide = true
# DEPENDENCIES
[tasks."deps:outdated"]
depends = [
'npm-outdated',
'tailwind-outdated',
'esbuild-outdated',
'sqlean-outdated',
'mix-outdated',
]
description = 'Show outdated dependencies'
[tasks."deps:update"]
depends = [
'npm-update',