Add task to check that Tailwind is up to date

This commit is contained in:
Claudio Ortolina
2025-03-09 09:17:05 +00:00
parent ada2c6ac3f
commit be7231f5aa
2 changed files with 41 additions and 1 deletions
+6 -1
View File
@@ -29,6 +29,11 @@ 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
[tasks.setup]
depends = ['npm-install']
description = 'Install dependencies and setup the database'
@@ -40,7 +45,7 @@ description = 'Update dependencies'
run = ['mix deps.update --all']
[tasks.deps-outdated]
depends = ['npm-outdated']
depends = ['npm-outdated', 'tailwind-outdated']
description = 'Show outdated dependencies'
run = ['mix hex.outdated --all']