@mintlify/cli 4.0.1052 → 4.0.1053
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 +3 -3
- package/bin/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/cli.tsx +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintlify/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1053",
|
|
4
4
|
"description": "The Mintlify CLI",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"vitest": "2.1.9",
|
|
88
88
|
"vitest-mock-process": "1.0.4"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "cc96851db28eb34c56e3b89aab3f4b603a6fbe55"
|
|
91
91
|
}
|
package/src/cli.tsx
CHANGED
|
@@ -425,7 +425,7 @@ export const cli = ({ packageName = 'mint' }: { packageName?: string }) => {
|
|
|
425
425
|
)
|
|
426
426
|
.command(
|
|
427
427
|
'new [directory]',
|
|
428
|
-
'
|
|
428
|
+
'create a new Mintlify documentation site',
|
|
429
429
|
(yargs) =>
|
|
430
430
|
yargs
|
|
431
431
|
.positional('directory', {
|
|
@@ -460,7 +460,7 @@ export const cli = ({ packageName = 'mint' }: { packageName?: string }) => {
|
|
|
460
460
|
)
|
|
461
461
|
.command(
|
|
462
462
|
'workflow',
|
|
463
|
-
'
|
|
463
|
+
'add a workflow to your documentation repository',
|
|
464
464
|
() => undefined,
|
|
465
465
|
async () => {
|
|
466
466
|
try {
|
|
@@ -474,7 +474,7 @@ export const cli = ({ packageName = 'mint' }: { packageName?: string }) => {
|
|
|
474
474
|
}
|
|
475
475
|
}
|
|
476
476
|
)
|
|
477
|
-
.command('scrape', '
|
|
477
|
+
.command('scrape', 'scrape documentation from external sites', (yargs) =>
|
|
478
478
|
yargs
|
|
479
479
|
.command(
|
|
480
480
|
['$0 <url>', 'site <url>'],
|