From ec4d806a80aa68fa6d3c85c4d4f2293b7bef6b29 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Fri, 26 Apr 2024 16:36:26 -0400 Subject: [PATCH] generator: drop the tailwind aspect-ratio plugin This plugin was originally a polyfill to handle the time gap until Safari 15 was released (in Fall 2021), and so is beyond its useful lifetime for anyone not targetting ancient browsers. Co-authored-by: Justin Searls --- CHANGELOG.md | 5 +++++ lib/install/tailwind.config.js | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e7f8f2..2220e78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## next / unreleased + +* Remove the `@tailwindcss/aspect-ratio` plugin from the `tailwind.config.js` that gets installed by the generator. (#344) @flavorjones @searls + + ## v2.4.1 / 2024-04-25 * Fix debugger repl when using the Puma plugin. (#349) @tompng diff --git a/lib/install/tailwind.config.js b/lib/install/tailwind.config.js index 39364de..d6ad82c 100644 --- a/lib/install/tailwind.config.js +++ b/lib/install/tailwind.config.js @@ -16,7 +16,6 @@ module.exports = { }, plugins: [ require('@tailwindcss/forms'), - require('@tailwindcss/aspect-ratio'), require('@tailwindcss/typography'), require('@tailwindcss/container-queries'), ]