lib/sass/node_package_importer.rb



# frozen_string_literal: true

module Sass
  # The built-in Node.js package importer. This loads pkg: URLs from node_modules
  # according to the standard Node.js resolution algorithm.
  #
  # @see https://sass-lang.com/documentation/js-api/classes/nodepackageimporter/
  class NodePackageImporter
    # @param entry_point_directory [String] The directory where the {NodePackageImporter} should start when resolving
    #   `pkg:` URLs in sources other than files on disk.
    def initialize(entry_point_directory)
      raise ArgumentError, 'entry_point_directory must be set' if entry_point_directory.nil?

      @entry_point_directory = File.absolute_path(entry_point_directory)
    end
  end
end