From 8ea569c68a0d019181b763c595729891840ed192 Mon Sep 17 00:00:00 2001 From: Piyush Gupta Date: Mon, 13 Oct 2025 18:29:28 +0530 Subject: [PATCH 1/4] fix: docs dev command --- docs/CONTRIBUTING.MD | 6 +++--- docs/contributing/platform/developing.mdx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/CONTRIBUTING.MD b/docs/CONTRIBUTING.MD index a74f0985e..b43137f28 100644 --- a/docs/CONTRIBUTING.MD +++ b/docs/CONTRIBUTING.MD @@ -1,8 +1,8 @@ # Contributing to the documentation ## Getting familiar with Mintlify -New to Mintlify. [Start Here](https://mintlify.com/docs/quickstart) +New to Mintlify. [Start Here](https://mintlify.com/docs/quickstart) ## 👩‍💻 Development @@ -15,10 +15,10 @@ npm i -g mintlify Run the following command at the root of your documentation (where mint.json is) ``` -mintlify dev +mint dev ``` ## Troubleshooting -- Mintlify dev isn't running - Run `mintlify install` it'll re-install dependencies. +- Mint dev isn't running - Run `mintlify install` it'll re-install dependencies. - Page loads as a 404 - Make sure you are running in a folder with `mint.json`. Check the `/docs` folder diff --git a/docs/contributing/platform/developing.mdx b/docs/contributing/platform/developing.mdx index 68add4603..2df137237 100644 --- a/docs/contributing/platform/developing.mdx +++ b/docs/contributing/platform/developing.mdx @@ -57,9 +57,9 @@ yarn global add mintlify #### Running the docs -Go to `docs` directory and run `mintlify dev`. This will start up the docs on `localhost:3000` +Go to `docs` directory and run `mint dev`. This will start up the docs on `localhost:3000` ```bash # From the root directory -cd docs; mintlify dev; +cd docs; mint dev; ``` From f33424141b9f987a36a02ae8f674077ccccb03bc Mon Sep 17 00:00:00 2001 From: Piyush Gupta Date: Mon, 13 Oct 2025 18:31:33 +0530 Subject: [PATCH 2/4] fix: update troubleshooting instructions in CONTRIBUTING.md --- docs/CONTRIBUTING.MD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CONTRIBUTING.MD b/docs/CONTRIBUTING.MD index b43137f28..71d2e30ae 100644 --- a/docs/CONTRIBUTING.MD +++ b/docs/CONTRIBUTING.MD @@ -20,5 +20,5 @@ mint dev ## Troubleshooting -- Mint dev isn't running - Run `mintlify install` it'll re-install dependencies. +- `mint dev` isn't running - Run `mintlify install` it'll re-install dependencies. - Page loads as a 404 - Make sure you are running in a folder with `mint.json`. Check the `/docs` folder From 928829ac3e179920c2abd7f0985dfe2d5ee66493 Mon Sep 17 00:00:00 2001 From: Piyush Gupta Date: Mon, 13 Oct 2025 23:53:53 +0530 Subject: [PATCH 3/4] fix: mint CLI commands --- docs/CONTRIBUTING.MD | 6 +++--- docs/contributing/platform/developing.mdx | 6 +++--- package.json | 3 ++- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/CONTRIBUTING.MD b/docs/CONTRIBUTING.MD index 71d2e30ae..6983ad8f4 100644 --- a/docs/CONTRIBUTING.MD +++ b/docs/CONTRIBUTING.MD @@ -6,10 +6,10 @@ New to Mintlify. [Start Here](https://mintlify.com/docs/quickstart) ## 👩‍💻 Development -Install the [Mintlify CLI](https://www.npmjs.com/package/mintlify) to preview the documentation changes locally. To install, use the following command +Install the [Mint CLI](https://www.npmjs.com/package/mint) to preview the documentation changes locally. To install, use the following command ``` -npm i -g mintlify +npm i -g mint ``` Run the following command at the root of your documentation (where mint.json is) @@ -20,5 +20,5 @@ mint dev ## Troubleshooting -- `mint dev` isn't running - Run `mintlify install` it'll re-install dependencies. +- `mint dev` isn't running - Run `mint update` to update the Mint CLI. - Page loads as a 404 - Make sure you are running in a folder with `mint.json`. Check the `/docs` folder diff --git a/docs/contributing/platform/developing.mdx b/docs/contributing/platform/developing.mdx index 2df137237..69710baf3 100644 --- a/docs/contributing/platform/developing.mdx +++ b/docs/contributing/platform/developing.mdx @@ -43,16 +43,16 @@ docker compose -f docker-compose.dev.yml down We use [Mintlify](https://mintlify.com/) for our docs. -#### Install Mintlify CLI. +#### Install Mint CLI. ```bash -npm i -g mintlify +npm i -g mint ``` or ```bash -yarn global add mintlify +yarn global add mint ``` #### Running the docs diff --git a/package.json b/package.json index db15de3fb..c5c99d7ab 100644 --- a/package.json +++ b/package.json @@ -26,5 +26,6 @@ "dependencies": { "@radix-ui/react-radio-group": "^1.1.3", "secrets.js-grempe": "^2.0.0" - } + }, + "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" } From 17291721eb9cd233893beef436967bd58aa16cd4 Mon Sep 17 00:00:00 2001 From: Piyush Gupta Date: Mon, 13 Oct 2025 23:54:45 +0530 Subject: [PATCH 4/4] chore: refactor --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index c5c99d7ab..db15de3fb 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,5 @@ "dependencies": { "@radix-ui/react-radio-group": "^1.1.3", "secrets.js-grempe": "^2.0.0" - }, - "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" + } }