@mintlify/cli 4.0.743 → 4.0.745
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 +1 -1
- package/bin/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/src/cli.tsx +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintlify/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.745",
|
|
4
4
|
"description": "The Mintlify CLI",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"format:check": "prettier . --check"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@mintlify/common": "1.0.
|
|
43
|
-
"@mintlify/link-rot": "3.0.
|
|
42
|
+
"@mintlify/common": "1.0.552",
|
|
43
|
+
"@mintlify/link-rot": "3.0.690",
|
|
44
44
|
"@mintlify/models": "0.0.230",
|
|
45
|
-
"@mintlify/prebuild": "1.0.
|
|
46
|
-
"@mintlify/previewing": "4.0.
|
|
47
|
-
"@mintlify/validation": "0.1.
|
|
45
|
+
"@mintlify/prebuild": "1.0.677",
|
|
46
|
+
"@mintlify/previewing": "4.0.726",
|
|
47
|
+
"@mintlify/validation": "0.1.481",
|
|
48
48
|
"chalk": "^5.2.0",
|
|
49
49
|
"color": "^4.2.3",
|
|
50
50
|
"detect-port": "^1.5.1",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"vitest": "^2.0.4",
|
|
79
79
|
"vitest-mock-process": "^1.0.4"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "ebbb9d61c46aaac15a40268ad6db1a2f4d07d724"
|
|
82
82
|
}
|
package/src/cli.tsx
CHANGED
|
@@ -241,8 +241,8 @@ export const cli = ({ packageName = 'mint' }: { packageName?: string }) => {
|
|
|
241
241
|
}
|
|
242
242
|
)
|
|
243
243
|
.command(
|
|
244
|
-
['accessibility-check', 'a11y-check', 'accessibility'
|
|
245
|
-
|
|
244
|
+
['a11y', 'accessibility-check', 'a11y-check', 'accessibility'],
|
|
245
|
+
'check for accessibility issues in documentation',
|
|
246
246
|
() => undefined,
|
|
247
247
|
async () => {
|
|
248
248
|
const accessibilityCheckTerminateCode = await accessibilityCheck();
|