From 1b48a2218c5386cf2a50e8cbddb666ce2f412876 Mon Sep 17 00:00:00 2001 From: KwiatekMiki Date: Sun, 6 Oct 2024 15:58:10 +0200 Subject: [PATCH] api/setup: use pnpm instead of npm --- api/src/util/setup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/util/setup.js b/api/src/util/setup.js index e9d1beae..34b870cb 100644 --- a/api/src/util/setup.js +++ b/api/src/util/setup.js @@ -19,7 +19,7 @@ let final = () => { } console.log(Bright("\nAwesome! I've created a fresh .env file for you.")); console.log(`${Bright("Now I'll run")} ${Cyan("npm install")} ${Bright("to install all dependencies. It shouldn't take long.\n\n")}`); - execSync('npm install', { stdio: [0, 1, 2] }); + execSync('pnpm install', { stdio: [0, 1, 2] }); console.log(`\n\n${Cyan("All done!\n")}`); console.log(Bright("You can re-run this script at any time to update the configuration.")); console.log(Bright("\nYou're now ready to start cobalt. Simply run ") + Cyan("npm start") + Bright('!\nHave fun :)'));