From dbfa51d434db774459402a119c6a143bf9a63a06 Mon Sep 17 00:00:00 2001 From: Typas Liao Date: Thu, 2 Jul 2026 23:21:59 +0800 Subject: [PATCH] feat(justfile): add node recipe for fnm + pnpm Implementing script lands separately on dev/node so recipe.yml can smoke-test it (that workflow triggers only on dev/** branches). Co-Authored-By: Claude Opus 4.8 --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index ca43a5d..16af2fb 100644 --- a/justfile +++ b/justfile @@ -97,6 +97,10 @@ modern: python: bash {{root}}/scripts/install-python.sh +# Install fnm (Node version manager) with Node LTS and enable pnpm via corepack +node: + bash {{root}}/scripts/install-node.sh {{os}} + # Install or update Go (use: just go, just go update) go action="install": bash {{root}}/scripts/install-go.sh {{action}}