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