@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/bin/cli.js
CHANGED
|
@@ -174,7 +174,7 @@ export const cli = ({ packageName = 'mint' }) => {
|
|
|
174
174
|
yield migrateMdx();
|
|
175
175
|
yield terminate(0);
|
|
176
176
|
}))
|
|
177
|
-
.command(['accessibility-check', 'a11y-check', 'accessibility', '
|
|
177
|
+
.command(['a11y', 'accessibility-check', 'a11y-check', 'accessibility'], 'check for accessibility issues in documentation', () => undefined, () => __awaiter(void 0, void 0, void 0, function* () {
|
|
178
178
|
const accessibilityCheckTerminateCode = yield accessibilityCheck();
|
|
179
179
|
const mdxLinterTerminateCode = yield mdxLinter();
|
|
180
180
|
yield terminate(accessibilityCheckTerminateCode || mdxLinterTerminateCode);
|