mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
9 lines
307 B
Ruby
9 lines
307 B
Ruby
# frozen_string_literal: true
|
|
|
|
import_file File.expand_path('static.html', root), '/static2.html'
|
|
|
|
import_path File.expand_path('bower_components/', root)
|
|
|
|
import_path File.expand_path('bower_components', root) do |target_path, _original_path|
|
|
target_path.sub('bower_components', 'bower_components2')
|
|
end
|