Sha256: 0a968c9d7cccaded7064e178f5894e48841e00fbf86cf977d13918f3c32cf2c1
Contents?: true
Size: 559 Bytes
Versions: 35
Compression:
Stored size: 559 Bytes
Contents
# frozen_string_literal: true # @api private class ::Sass::Importers::Filesystem alias _orig_find _find def _find(dir, name, options) # Find filename full_filename, _syntax = ::Sass::Util.destructure(find_real_file(dir, name, options)) return nil if full_filename.nil? # Create dependency filter = options[:nanoc_current_filter] if filter item = filter.imported_filename_to_item(full_filename) filter.depend_on([item]) unless item.nil? end # Call original _find _orig_find(dir, name, options) end end
Version data entries
35 entries across 35 versions & 1 rubygems