module Sprockets::PathDependencyUtils

def stat_directory_with_dependencies(dir)

Returns an Array of filenames and a Set of dependency URIs.

dir - A String directory

See PathUtils#stat_directory

directory.
Internal: List directory filenames and associated Stats under a
def stat_directory_with_dependencies(dir)
  return stat_directory(dir).to_a, Set.new([build_file_digest_uri(dir)])
end