From d3e77d0f265095dbe09c065df1c2398fdbf14541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Bou=C3=A7as?= Date: Fri, 13 Dec 2024 14:58:47 +0000 Subject: [PATCH] chore: remove comment --- packages/edge-bundler/node/bridge.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/edge-bundler/node/bridge.ts b/packages/edge-bundler/node/bridge.ts index 34567022d6..7b435fc0ad 100644 --- a/packages/edge-bundler/node/bridge.ts +++ b/packages/edge-bundler/node/bridge.ts @@ -12,11 +12,6 @@ import { getLogger, Logger } from './logger.js' import { getBinaryExtension } from './platform.js' const DENO_VERSION_FILE = 'version.txt' - -// When updating DENO_VERSION_RANGE, ensure that the deno version installed in the -// build-image/buildbot does satisfy this range! -// We're pinning the range because of an issue with v1.45.0 of the Deno CLI: -// https://linear.app/netlify/issue/FRP-775/deno-cli-v1450-causing-issues const DENO_VERSION_RANGE = '^2.1.4' type OnBeforeDownloadHook = () => void | Promise