Class: StimulusPlumbers::Tailwind::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Generators::CssEntrypoint
Defined in:
lib/generators/stimulus_plumbers/tailwind/install/install_generator.rb

Instance Method Summary collapse

Instance Method Details

#installObject



15
16
17
18
19
20
21
22
# File 'lib/generators/stimulus_plumbers/tailwind/install/install_generator.rb', line 15

def install
  css_file = entry_css_file(**css_file_lookup_options)
  return warn_entry_css_not_found(label: "Tailwind CSS", **css_file_lookup_options) unless css_file

  apply_tokens_directive(css_file)
  apply_animations_directive(css_file)
  apply_sources_directive(css_file)
end