From 278becf43e58c023eb7f934d0166da9ac76172ff Mon Sep 17 00:00:00 2001 From: wlipa Date: Sat, 12 Apr 2025 15:29:42 -0700 Subject: [PATCH] suppress caniuse-lite is outdated warning --- lib/puma/plugin/tailwindcss.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puma/plugin/tailwindcss.rb b/lib/puma/plugin/tailwindcss.rb index 4624d7e8..1cffeaa6 100644 --- a/lib/puma/plugin/tailwindcss.rb +++ b/lib/puma/plugin/tailwindcss.rb @@ -13,7 +13,7 @@ def start(launcher) # If we use system(*command) instead, IRB and Debug can't read from $stdin # correctly bacause some keystrokes will be taken by watch_command. begin - IO.popen(Tailwindcss::Commands.watch_command, 'r+') do |io| + IO.popen({'BROWSERSLIST_IGNORE_OLD_DATA' => '1'}, Tailwindcss::Commands.watch_command, 'r+') do |io| IO.copy_stream(io, $stdout) end rescue Interrupt