From 18e41f00cb617fa4ad778792ecbeb6f6a992b60f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 18 Mar 2026 07:44:42 +0000 Subject: [PATCH 1/2] chore(deps): update dependency prettier-plugin-tailwindcss to ^0.7.0 --- __fixtures__/esm-test-project/package.json | 2 +- __fixtures__/test-project-live/package.json | 2 +- __fixtures__/test-project/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/__fixtures__/esm-test-project/package.json b/__fixtures__/esm-test-project/package.json index c3cb0cc280..c707c7ac7a 100644 --- a/__fixtures__/esm-test-project/package.json +++ b/__fixtures__/esm-test-project/package.json @@ -12,7 +12,7 @@ "@cedarjs/project-config": "2.8.0", "@cedarjs/testing": "2.8.0", "vitest": "3.2.4", - "prettier-plugin-tailwindcss": "^0.5.12" + "prettier-plugin-tailwindcss": "^0.7.0" }, "engines": { "node": "=24.x" diff --git a/__fixtures__/test-project-live/package.json b/__fixtures__/test-project-live/package.json index 77e4fa4219..0c6a564349 100644 --- a/__fixtures__/test-project-live/package.json +++ b/__fixtures__/test-project-live/package.json @@ -10,7 +10,7 @@ "@cedarjs/eslint-config": "2.6.0", "@cedarjs/project-config": "2.6.0", "@cedarjs/testing": "2.6.0", - "prettier-plugin-tailwindcss": "^0.5.12" + "prettier-plugin-tailwindcss": "^0.7.0" }, "engines": { "node": "=24.x" diff --git a/__fixtures__/test-project/package.json b/__fixtures__/test-project/package.json index f9af095325..d4f8fd9dde 100644 --- a/__fixtures__/test-project/package.json +++ b/__fixtures__/test-project/package.json @@ -10,7 +10,7 @@ "@cedarjs/eslint-config": "2.8.0", "@cedarjs/project-config": "2.8.0", "@cedarjs/testing": "2.8.0", - "prettier-plugin-tailwindcss": "^0.5.12" + "prettier-plugin-tailwindcss": "^0.7.0" }, "engines": { "node": "=24.x" From c981deeb22ec519b20594753f9653a01ec35e6b5 Mon Sep 17 00:00:00 2001 From: Tobbe Lundberg Date: Wed, 18 Mar 2026 16:11:50 +0100 Subject: [PATCH 2/2] install v0.7 during setup --- .../cli/src/commands/setup/ui/libraries/tailwindcssHandler.js | 2 +- tasks/test-project/tasks.mts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/src/commands/setup/ui/libraries/tailwindcssHandler.js b/packages/cli/src/commands/setup/ui/libraries/tailwindcssHandler.js index f35012cf70..0a9aecc575 100644 --- a/packages/cli/src/commands/setup/ui/libraries/tailwindcssHandler.js +++ b/packages/cli/src/commands/setup/ui/libraries/tailwindcssHandler.js @@ -96,7 +96,7 @@ export const handler = async ({ force, install }) => { }) const rwPaths = getPaths() - const projectPackages = ['prettier-plugin-tailwindcss@^0.5.12'] + const projectPackages = ['prettier-plugin-tailwindcss@^0.7.0'] const webWorkspacePackages = [ 'postcss', diff --git a/tasks/test-project/tasks.mts b/tasks/test-project/tasks.mts index 78f67e9e68..2b2d459e28 100644 --- a/tasks/test-project/tasks.mts +++ b/tasks/test-project/tasks.mts @@ -40,7 +40,7 @@ export async function webTasks( // @NOTE: use cfw, because calling the copy function doesn't seem to work here task: () => execa( - 'yarn workspace web add -D postcss postcss-loader tailwindcss autoprefixer prettier-plugin-tailwindcss@^0.5.12', + 'yarn workspace web add -D postcss postcss-loader tailwindcss autoprefixer prettier-plugin-tailwindcss@^0.7.0', [], getExecaOptions(outputPath), ),