mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
10 lines
No EOL
228 B
Ruby
10 lines
No EOL
228 B
Ruby
module Middleman::Features::MinifyCss
|
|
class << self
|
|
def registered(app)
|
|
app.after_compass_init do
|
|
::Compass.configuration.output_style = :compressed
|
|
end
|
|
end
|
|
alias :included :registered
|
|
end
|
|
end |