From 972b45cdda6c3bf782a3a4b0c5629fe0044e4d0e Mon Sep 17 00:00:00 2001 From: Alex Karajos Date: Fri, 6 Feb 2026 16:30:17 +0200 Subject: [PATCH] Issue #118: Add Node.js v24 instructions Signed-off-by: Alex Karajos --- wsl/roles/system/templates/bash_profile.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/wsl/roles/system/templates/bash_profile.j2 b/wsl/roles/system/templates/bash_profile.j2 index 46bda10..aa474b7 100644 --- a/wsl/roles/system/templates/bash_profile.j2 +++ b/wsl/roles/system/templates/bash_profile.j2 @@ -9,3 +9,4 @@ alias php85="sudo dnf module switch-to php:remi-8.5 -y" alias node18="sudo dnf remove nodejs -y && curl -fsSL https://rpm.nodesource.com/setup_18.x | sudo bash - && sudo dnf install nodejs -y" alias node20="sudo dnf remove nodejs -y && curl -fsSL https://rpm.nodesource.com/setup_20.x | sudo bash - && sudo dnf install nodejs -y" alias node22="sudo dnf remove nodejs -y && curl -fsSL https://rpm.nodesource.com/setup_22.x | sudo bash - && sudo dnf install nodejs -y" +alias node24="sudo dnf remove nodejs -y && curl -fsSL https://rpm.nodesource.com/setup_24.x | sudo bash - && sudo dnf install nodejs -y"