diff --git a/src/version.js b/src/version.js index fba9240..f053db0 100644 --- a/src/version.js +++ b/src/version.js @@ -48,7 +48,9 @@ function parseVersionRange(version) { async function resolveVersion({ range, isCanary }) { if (isCanary) { if (range === "latest") { - const res = await fetchWithRetries("https://dl.deno.land/canary-latest.txt"); + const res = await fetchWithRetries( + "https://dl.deno.land/canary-latest.txt", + ); if (res.status !== 200) { throw new Error( "Failed to fetch canary version info from dl.deno.land. Please try again later.",