mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
9 lines
No EOL
220 B
Ruby
9 lines
No EOL
220 B
Ruby
module Middleman::Features::MinifyCss
|
|
class << self
|
|
def registered(app)
|
|
require "middleman/features/minify_css/cssmin"
|
|
app.set :css_compressor, ::CSSMin
|
|
end
|
|
alias :included :registered
|
|
end
|
|
end |