From 13f29e5ca3880dba3ded4bd05d452be419910bd1 Mon Sep 17 00:00:00 2001 From: coded <124201938+kashifaris@users.noreply.github.com> Date: Wed, 21 May 2025 12:28:33 +0530 Subject: [PATCH] chore(docs): Update npm command (#12547) `npm run install` in the first place is not a valid command, `yarn run install` will also be fixed by this change as we are using **npm-to-yarn** package for its conversion (tested). `yarn run start` is a valid command, i know `yarn start` is a **short-hand** but i cant help here as we have't hardcoded it in the docs its being converted through the same package mentioned above, anyways both are valid so should be fine ig. --- www/apps/book/app/learn/deployment/general/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/apps/book/app/learn/deployment/general/page.mdx b/www/apps/book/app/learn/deployment/general/page.mdx index e0259aa890..8585be4309 100644 --- a/www/apps/book/app/learn/deployment/general/page.mdx +++ b/www/apps/book/app/learn/deployment/general/page.mdx @@ -305,7 +305,7 @@ The Medusa application's production build, which is created using the `build` co If your hosting provider doesn't support setting a current-working directory, set the start command to the following: ```bash npm2yarn -cd .medusa/server && npm run install && npm run start +cd .medusa/server && npm install && npm run start ``` ---