From 7a994bc7a763faca258140032f9131e336a17205 Mon Sep 17 00:00:00 2001 From: jfavlam Date: Tue, 22 Mar 2022 10:35:07 +0100 Subject: [PATCH] chore(nuxi): add pnpm to `init` instructions (#3826) * Add pnpm instructions Add pnpm commands to install the dependencies and start the development server * Update packages/nuxi/src/commands/init.ts Co-authored-by: pooya parsa --- packages/nuxi/src/commands/init.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nuxi/src/commands/init.ts b/packages/nuxi/src/commands/init.ts index 84f767a6c..aac0d30dd 100644 --- a/packages/nuxi/src/commands/init.ts +++ b/packages/nuxi/src/commands/init.ts @@ -56,8 +56,8 @@ export default defineNuxtCommand({ console.log(`\n 🎉 Another ${superb.random()} Nuxt project just made! Next steps:` + [ '', `📁 \`cd ${rpath(dstDir)}\``, - '💿 Install dependencies with `npm install` or `yarn install`', - '🚀 Start development server with `npm run dev` or `yarn dev`', + '💿 Install dependencies with `npm install` or `yarn install` or `pnpm install --shamefully-hoist`', + '🚀 Start development server with `npm run dev` or `yarn dev` or `pnpm run dev', '' ].join('\n\n ')) }