@mintlify/cli 4.0.1235 → 4.0.1236
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/bin/welcome.js +1 -1
- package/bin/workflows/index.js +19 -19
- package/package.json +2 -2
- package/src/cli.tsx +5 -1
- package/src/welcome.ts +1 -1
- package/src/workflows/index.tsx +19 -19
package/bin/cli.js
CHANGED
|
@@ -454,7 +454,7 @@ export const cli = ({ packageName = 'mint' }) => {
|
|
|
454
454
|
yield terminate(1);
|
|
455
455
|
}
|
|
456
456
|
}))
|
|
457
|
-
.command('workflow', 'Create and manage
|
|
457
|
+
.command(['automations', 'workflow', 'workflows'], 'Create and manage automations', workflowsBuilder)
|
|
458
458
|
.command('score [url]', 'Run agent readiness checks on a docs site', (yargs) => yargs
|
|
459
459
|
.positional('url', {
|
|
460
460
|
type: 'string',
|