@mintlify/cli 4.0.1348 → 4.0.1350
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/bin/cli.js +5 -0
- package/bin/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/src/cli.tsx +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintlify/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1350",
|
|
4
4
|
"description": "The Mintlify CLI",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@inquirer/prompts": "7.9.0",
|
|
48
|
-
"@mintlify/common": "1.0.
|
|
49
|
-
"@mintlify/link-rot": "3.0.
|
|
48
|
+
"@mintlify/common": "1.0.1050",
|
|
49
|
+
"@mintlify/link-rot": "3.0.1244",
|
|
50
50
|
"@mintlify/models": "0.0.343",
|
|
51
|
-
"@mintlify/prebuild": "1.0.
|
|
52
|
-
"@mintlify/previewing": "4.0.
|
|
51
|
+
"@mintlify/prebuild": "1.0.1199",
|
|
52
|
+
"@mintlify/previewing": "4.0.1268",
|
|
53
53
|
"@mintlify/validation": "0.1.803",
|
|
54
54
|
"adm-zip": "0.5.16",
|
|
55
55
|
"chalk": "5.2.0",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"keytar": "7.9.0"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@mintlify/editor": "0.0.
|
|
86
|
+
"@mintlify/editor": "0.0.256",
|
|
87
87
|
"@mintlify/ts-config": "2.0.2",
|
|
88
88
|
"@tsconfig/recommended": "1.0.2",
|
|
89
89
|
"@types/adm-zip": "0.5.7",
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"vitest": "2.1.9",
|
|
104
104
|
"vitest-mock-process": "1.0.4"
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "93b493fbf3ae70830c3b2ed01f51ab4c34ff7c80"
|
|
107
107
|
}
|
package/src/cli.tsx
CHANGED
|
@@ -148,6 +148,11 @@ export const cli = ({ packageName = 'mint' }: { packageName?: string }) => {
|
|
|
148
148
|
default: false,
|
|
149
149
|
description: 'Disable OpenAPI file generation',
|
|
150
150
|
})
|
|
151
|
+
.option('disable-prefetch', {
|
|
152
|
+
type: 'boolean',
|
|
153
|
+
default: false,
|
|
154
|
+
description: 'Disable navigation prefetching in the local preview',
|
|
155
|
+
})
|
|
151
156
|
.usage('usage: mintlify dev [options]')
|
|
152
157
|
.example('mintlify dev', 'run with default settings (opens in browser)')
|
|
153
158
|
.example('mintlify dev --no-open', 'run without opening in browser'),
|