Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions lib/tailwindcss/engine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,18 @@ class Engine < ::Rails::Engine
config.app_generators do |g|
g.template_engine :tailwindcss
end

server do
tailwind_pid = fork do
# To avoid stealing keystrokes from the debug gem's IRB console in the main process (which
# needs to be able to read from $stdin), we use `IO.open(..., 'r+')`.
IO.popen(Tailwindcss::Commands.watch_command, 'r+') do |io|
IO.copy_stream(io, $stdout)
end
end
at_exit do
Process.kill(:INT, tailwind_pid)
end
end
end
end