From 72b633f20ae73cf595671292117c453847bf33c1 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Wed, 5 Nov 2025 12:44:07 +0100 Subject: [PATCH] feat(cli): use node v24 --- tools/esbuild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/esbuild.js b/tools/esbuild.js index b731ed6078..827b1227ad 100644 --- a/tools/esbuild.js +++ b/tools/esbuild.js @@ -6,7 +6,7 @@ import shell from 'shelljs'; shell.config.fatal = true; -const nodeVersion = 22; +const nodeVersion = 24; const version = process.env.CONTAINERBASE_VERSION ?? '0.0.0-PLACEHOLDER'; shell.rm('-rf', 'dist/docker');