diff options
author | 2024-09-17 18:19:22 -0400 | |
---|---|---|
committer | 2024-09-18 00:19:22 +0200 | |
commit | dcd115892a23b17309347c13ce4d82af73d204b2 (patch) | |
tree | f79551ec7f6e5f24fa92f2f7e52dfbf21a7d0fbe | |
parent | 0b59fe74d5922c572007572ddca8d11482e2fb5c (diff) | |
download | astro-dcd115892a23b17309347c13ce4d82af73d204b2.tar.gz astro-dcd115892a23b17309347c13ce4d82af73d204b2.tar.zst astro-dcd115892a23b17309347c13ce4d82af73d204b2.zip |
Make @astrojs/tailwind compat with Astro 5 (#12018)
-rw-r--r-- | .changeset/plenty-pandas-repeat.md | 5 | ||||
-rw-r--r-- | packages/integrations/tailwind/package.json | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.changeset/plenty-pandas-repeat.md b/.changeset/plenty-pandas-repeat.md new file mode 100644 index 000000000..64151e63e --- /dev/null +++ b/.changeset/plenty-pandas-repeat.md @@ -0,0 +1,5 @@ +--- +'@astrojs/tailwind': patch +--- + +Make @astrojs/tailwind compat with Astro 5 diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json index a9e16dd12..42082a982 100644 --- a/packages/integrations/tailwind/package.json +++ b/packages/integrations/tailwind/package.json @@ -44,7 +44,7 @@ "vite": "^5.4.3" }, "peerDependencies": { - "astro": "^3.0.0 || ^4.0.0", + "astro": "^3.0.0 || ^4.0.0 || ^5.0.0-beta.0", "tailwindcss": "^3.0.24" }, "publishConfig": { |