From 17df558207802e47dfcf8187e349e29b10f0e3d6 Mon Sep 17 00:00:00 2001 From: Mateusz Bocian Date: Wed, 11 Dec 2024 12:17:44 -0500 Subject: [PATCH] fix: update comment with a link to buildbot --- packages/edge-bundler/node/bridge.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/edge-bundler/node/bridge.ts b/packages/edge-bundler/node/bridge.ts index aa5ab0d2bf..a597bd3275 100644 --- a/packages/edge-bundler/node/bridge.ts +++ b/packages/edge-bundler/node/bridge.ts @@ -12,6 +12,10 @@ 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 +// on the netlify/buildbot build image satisfies this range! +// https://github.com/netlify/buildbot/blob/f9c03c9dcb091d6570e9d0778381560d469e78ad/build-image/noble/Dockerfile#L410 const DENO_VERSION_RANGE = '1.39.0 - 1.46.3' type OnBeforeDownloadHook = () => void | Promise