module Sprockets::PathDependencyUtils

def entries_with_dependencies(path)

Returns an Array of entry names and a Set of dependency URIs.

path - String directory path

See PathUtils#entries

would invalid the cached return result.
Internal: List directory entries and return a set of dependencies that
def entries_with_dependencies(path)
  return entries(path), Set.new([build_file_digest_uri(path)])
end