@mintlify/cli 4.0.1335 → 4.0.1337

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 CHANGED
@@ -21,7 +21,6 @@ import { setTelemetryEnabled } from './config.js';
21
21
  import { getConfigValue, setConfigValue, clearConfigValue } from './config.js';
22
22
  import { API_URL } from './constants.js';
23
23
  import { deslopHandler } from './deslop/index.js';
24
- import { formatHandler } from './format.js';
25
24
  import { CMD_EXEC_PATH, checkPort, checkNodeVersion, autoUpgradeIfNeeded, getVersions, isAI, suppressConsoleWarnings, terminate, } from './helpers.js';
26
25
  import { init } from './init.js';
27
26
  import { getAccessToken } from './keyring.js';
@@ -523,7 +522,6 @@ export const cli = ({ packageName = 'mint' }) => {
523
522
  .example('mint deslop', 'Check git-changed pages for AI-sounding prose')
524
523
  .example('mint deslop docs/guide.mdx', 'Check a specific page')
525
524
  .example('mint deslop "docs/**/*.mdx" --format json', 'Check pages by glob with agent-friendly JSON output'), deslopHandler)
526
- .command('format', false, () => undefined, formatHandler)
527
525
  // Coming soon commands — visible in help, tracked via telemetry to gauge interest.
528
526
  .command('ai', '[Coming soon] AI-powered documentation (run mint ai to vote)', () => undefined, comingSoon('ai', packageName))
529
527
  .command('test', '[Coming soon] Test your documentation (run mint test to vote)', () => undefined, comingSoon('test', packageName))