From 859895592f3060c39ae95572b9d07aa160a4276a Mon Sep 17 00:00:00 2001 From: poroyo <132068975+poroyo@users.noreply.github.com> Date: Thu, 4 Jul 2024 14:14:50 +0900 Subject: [PATCH] Update scripts to use pnpm instead of npm --- server.bat | 6 +++--- server.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/server.bat b/server.bat index 8003d3b4..0eed9a92 100644 --- a/server.bat +++ b/server.bat @@ -1,3 +1,3 @@ -call npm install -call npm run build -call npm run runserver \ No newline at end of file +call pnpm install +call pnpm run build +call pnpm run runserver diff --git a/server.sh b/server.sh index 5041f2e7..65c62b6d 100644 --- a/server.sh +++ b/server.sh @@ -1,3 +1,3 @@ -npm install -npm run build -npm run runserver \ No newline at end of file +pnpm install +pnpm run build +pnpm run runserver