Skip to content

Commit

Permalink
api/setup: use pnpm instead of npm
Browse files Browse the repository at this point in the history
  • Loading branch information
KwiatekMiki committed Oct 6, 2024
1 parent c482c9f commit 1b48a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/util/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 :)'));
Expand Down

0 comments on commit 1b48a22

Please sign in to comment.