From f346e357db896d57e5a70ac34d89c8b38ba45e45 Mon Sep 17 00:00:00 2001 From: "Nurul Huda (Apon)" Date: Sun, 21 Jun 2026 10:11:33 +0600 Subject: [PATCH] fix: proper guide for node template --- pkg/create-ziex/bin/index.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/pkg/create-ziex/bin/index.js b/pkg/create-ziex/bin/index.js index 6e602245..d49aa0e7 100644 --- a/pkg/create-ziex/bin/index.js +++ b/pkg/create-ziex/bin/index.js @@ -240,7 +240,22 @@ async function main() { } outro(`Successfully created ${color.cyan(project)}!`); - console.log(`\n cd ${project}\n zig build dev\n`); + const is_node = template === 'node'; + if (is_node) { + console.log(` + cd ${project} + npm i + npm run dev + + `); + } + else { + console.log(` + cd ${project} + zig build dev + + `); + } } // Make sure project name is suported Zig identifier