Skip to content

Commit

Permalink
Avoid using Sprockets::Utils.module_include in SasscProcessor if …
Browse files Browse the repository at this point in the history
…possible
  • Loading branch information
ntkme committed Jan 2, 2024
1 parent 5b040f3 commit 26306f4
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions lib/sprockets/sassc_processor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ def initialize(options = {}, &block)
@cache_key = "#{self.class.name}:#{VERSION}:#{Autoload::SassC::VERSION}:#{@cache_version}".freeze
@importer_class = options[:importer]
@sass_config = options[:sass_config] || {}
module_include_functions = Gem::Version.new(Autoload::SassC::VERSION) < Gem::Version.new('2.3.0')
@module_include_functions = module_include_functions
@functions = Module.new do
include Autoload::SassC::Script::Functions unless module_include_functions
include Functions
include options[:functions] if options[:functions]
class_eval(&block) if block_given?
Expand All @@ -55,9 +58,13 @@ def call(input)
options = engine_options(input, context)
engine = Autoload::SassC::Engine.new(input[:data], options)

css = Utils.module_include(Autoload::SassC::Script::Functions, @functions) do
engine.render.sub(/^\n^\/\*# sourceMappingURL=.*\*\/$/m, '')
end
css = if @module_include_functions
Utils.module_include(Autoload::SassC::Script::Functions, @functions) do
engine.render
end
else
engine.render
end.sub(/^\n^\/\*# sourceMappingURL=.*\*\/$/m, '')

begin
map = SourceMapUtils.format_source_map(JSON.parse(engine.source_map), input)
Expand Down Expand Up @@ -275,6 +282,7 @@ def engine_options(input, context)
filename: input[:filename],
syntax: self.class.syntax,
load_paths: input[:environment].paths,
functions: @functions,
importer: @importer_class,
source_map_contents: false,
source_map_file: "#{input[:filename]}.map",
Expand Down

0 comments on commit 26306f4

Please sign in to comment.