Skip to content

Commit

Permalink
Add missing Autoprefixer options
Browse files Browse the repository at this point in the history
  • Loading branch information
tedw committed Nov 29, 2018
1 parent 1b1cfea commit 5496942
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/middleman-autoprefixer/extension.rb
Expand Up @@ -7,6 +7,9 @@ class Extension < ::Middleman::Extension
option :cascade, true, 'Align prefixed properties'
option :inline, false, 'Process inline CSS within HTML files'
option :ignore, [], 'File patterns to avoid processing'
option :grid, true, 'Enable -ms- prefixes for Grid Layout'
option :supports, false, 'Disable @supports parameters prefixing'
option :flexbox, false, 'Disable flexbox properties prefixing'

def initialize(app, options = {}, &block)
super
Expand Down Expand Up @@ -37,7 +40,9 @@ def initialize(app, options = {})
browsers: options[:browsers] && Array(options[:browsers]),
add: options[:add],
remove: options[:remove],
cascade: options[:cascade]
grid: options[:grid],
supports: options[:supports],
flexbox: options[:flexbox]
})
end

Expand Down

0 comments on commit 5496942

Please sign in to comment.