From c8abec914611b72bb942d5744ccb62ca5fda1277 Mon Sep 17 00:00:00 2001 From: Paul Bob <69730720+Paul-Bob@users.noreply.github.com> Date: Mon, 3 Feb 2025 15:12:26 +0200 Subject: [PATCH] fix: tailwind integration dependencies (#3634) * fix: tailwind integration dependencies * comment --- lib/tasks/avo_tasks.rake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/tasks/avo_tasks.rake b/lib/tasks/avo_tasks.rake index 28d90c55f..b4069dfbe 100644 --- a/lib/tasks/avo_tasks.rake +++ b/lib/tasks/avo_tasks.rake @@ -133,6 +133,7 @@ end desc "Installs yarn dependencies for Avo" task "avo:yarn_install" do # tailwind.preset.js needs this dependencies in order to be required + # Ensure that versions remain updated and synchronized with those specified in package.json. puts "[Avo->] Adding yarn dependencies" - `yarn add tailwindcss @tailwindcss/forms @tailwindcss/typography @tailwindcss/container-queries --cwd #{Avo::Engine.root}` + `yarn add tailwindcss@^3.4.17 @tailwindcss/forms@^0.5.10 @tailwindcss/typography@^0.5.16 @tailwindcss/container-queries@^0.1.1 --cwd #{Avo::Engine.root}` end