We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16aed84 commit 057e2cbCopy full SHA for 057e2cb
lib/tailwindcss/compressor.rb
@@ -14,6 +14,9 @@ def initialize(options = {})
14
end
15
16
def call(input)
17
- { data: Tailwindcss::Purger.purge(input[:data], keeping_class_names_from_files: @options[:files_with_class_names]) }
+ {
18
+ data: Tailwindcss::Purger.purge(input[:data], keeping_class_names_from_files: @options[:files_with_class_names]),
19
+ dependencies: @options[:files_with_class_names].map { |f| "file-digest://#{f.to_path}" }.to_set
20
+ }
21
22
0 commit comments