mint 4.1.62 → 4.1.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -49,7 +49,7 @@ Run this command at the root of your Mintlify project to preview changes locally
49
49
 
50
50
  Notes
51
51
 
52
- - `mint dev` requires Node v18 or higher.
52
+ - `mint dev` requires Node v19 or higher.
53
53
 
54
54
  #### Custom Ports
55
55
 
@@ -70,8 +70,8 @@ Error: listen EADDRINUSE: address already in use :::3000
70
70
  Steps you can take if the dev CLI is not working (After each step try to run `mint dev` again):
71
71
 
72
72
  - Make sure you are running in a folder with a `docs.json` file.
73
- - Run `npm update -g mint` to ensure you have the most recent version of the CLI.
74
- - Make sure you are using Node v18 or higher.
73
+ - Run `mint update` to ensure you have the most recent version of the CLI.
74
+ - Make sure you are using Node v19 or higher.
75
75
  - Navigate to the `.mintlify` folder in your home directory and delete its contents.
76
76
 
77
77
  ### Additional Commands
@@ -88,6 +88,14 @@ Rename a file in a Mintlify project and update all internal link references.
88
88
 
89
89
  Check your OpenAPI file for errors. You can pass in a filename (e.g. `./openapi.yaml`) or a URL (e.g. `https://petstore3.swagger.io/api/v3/openapi.json`).
90
90
 
91
+ #### `mint update`
92
+
93
+ Updates to the most recent version of the Mint CLI.
94
+
95
+ #### `mint upgrade`
96
+
97
+ Upgrade from `mint.json` to `docs.json`. This command creates a `docs.json` from your existing `mint.json`.
98
+
91
99
  ### Get Started
92
100
 
93
101
  [Create an account](https://mintlify.com/start) to start using Mintlify for your documentation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mint",
3
- "version": "4.1.62",
3
+ "version": "4.1.64",
4
4
  "description": "The Mintlify CLI",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -28,10 +28,10 @@
28
28
  "clean:all": "rimraf node_modules"
29
29
  },
30
30
  "dependencies": {
31
- "@mintlify/cli": "4.0.579"
31
+ "@mintlify/cli": "4.0.581"
32
32
  },
33
33
  "devDependencies": {
34
34
  "rimraf": "^5.0.1"
35
35
  },
36
- "gitHead": "0eff87abe9b52c6a27278adacffbb988cf3e2e84"
36
+ "gitHead": "06686b8a5540ab01c0d69d6876c1599ddb7ab00a"
37
37
  }