class Dependabot::Uv::FileUpdater::CompileFileUpdater
def compile_options(filename)
def compile_options(filename) options = @build_isolation ? ["--build-isolation"] : ["--no-build-isolation"] options += compile_index_options if (requirements_file = compiled_file_for_filename(filename)) options += uv_compile_options_from_compiled_file(requirements_file) end options.join(" ") end