mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Fix #1787
This commit is contained in:
parent
f596d8ebf5
commit
6de25dfd0e
2 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ module Middleman
|
|||
# A flattened list of all extensions which are automatically activated
|
||||
# @return [Array<Symbol>] A list of extension names which are automatically activated.
|
||||
def auto_activated
|
||||
@auto_activate.values.map(&:to_a).flat_map(&:name)
|
||||
@auto_activate.values.map(&:to_a).flatten.map(&:name)
|
||||
end
|
||||
|
||||
# @api private
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
module Middleman
|
||||
# Current Version
|
||||
# @return [String]
|
||||
VERSION = '4.1.0'.freeze unless const_defined?(:VERSION)
|
||||
VERSION = '4.1.1'.freeze unless const_defined?(:VERSION)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue