@mintlify/cli 4.0.829 → 4.0.830

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mintlify/cli",
3
- "version": "4.0.829",
3
+ "version": "4.0.830",
4
4
  "description": "The Mintlify CLI",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -41,10 +41,10 @@
41
41
  "dependencies": {
42
42
  "@inquirer/prompts": "7.9.0",
43
43
  "@mintlify/common": "1.0.623",
44
- "@mintlify/link-rot": "3.0.769",
44
+ "@mintlify/link-rot": "3.0.770",
45
45
  "@mintlify/models": "0.0.244",
46
- "@mintlify/prebuild": "1.0.753",
47
- "@mintlify/previewing": "4.0.804",
46
+ "@mintlify/prebuild": "1.0.754",
47
+ "@mintlify/previewing": "4.0.805",
48
48
  "@mintlify/validation": "0.1.531",
49
49
  "adm-zip": "0.5.16",
50
50
  "chalk": "5.2.0",
@@ -81,5 +81,5 @@
81
81
  "vitest": "2.0.4",
82
82
  "vitest-mock-process": "1.0.4"
83
83
  },
84
- "gitHead": "4aaff83c8c86084371c5b1940b5ca38aeff3a99c"
84
+ "gitHead": "de987842b191275a4abf5ff6ef0e1ba3a50825a3"
85
85
  }
package/src/cli.tsx CHANGED
@@ -68,6 +68,11 @@ export const cli = ({ packageName = 'mint' }: { packageName?: string }) => {
68
68
  description: 'Mock user groups for local development and testing',
69
69
  example: '--groups admin user',
70
70
  })
71
+ .option('disable-openapi', {
72
+ type: 'boolean',
73
+ default: false,
74
+ description: 'Disable OpenAPI file generation',
75
+ })
71
76
  .usage('usage: mintlify dev [options]')
72
77
  .example('mintlify dev', 'run with default settings (opens in browser)')
73
78
  .example('mintlify dev --no-open', 'run without opening in browser'),