@mintlify/cli 4.0.607 → 4.0.609

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mintlify/cli",
3
- "version": "4.0.607",
3
+ "version": "4.0.609",
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.437",
43
- "@mintlify/link-rot": "3.0.557",
44
- "@mintlify/models": "0.0.203",
45
- "@mintlify/prebuild": "1.0.553",
46
- "@mintlify/previewing": "4.0.596",
47
- "@mintlify/validation": "0.1.403",
42
+ "@mintlify/common": "1.0.438",
43
+ "@mintlify/link-rot": "3.0.559",
44
+ "@mintlify/models": "0.0.204",
45
+ "@mintlify/prebuild": "1.0.555",
46
+ "@mintlify/previewing": "4.0.598",
47
+ "@mintlify/validation": "0.1.404",
48
48
  "chalk": "^5.2.0",
49
49
  "detect-port": "^1.5.1",
50
50
  "fs-extra": "^11.2.0",
@@ -73,5 +73,5 @@
73
73
  "vitest": "^2.0.4",
74
74
  "vitest-mock-process": "^1.0.4"
75
75
  },
76
- "gitHead": "f0eb38e3ee3da08dd1834ab335d6e8bbfdce4928"
76
+ "gitHead": "d3b4ff8ac79fd41d8ba710d1d6ccf0b95330e97c"
77
77
  }
package/src/cli.tsx CHANGED
@@ -60,6 +60,11 @@ export const cli = () => {
60
60
  hidden: true,
61
61
  description: 'the version of the client to use for cli testing',
62
62
  })
63
+ .option('groups', {
64
+ type: 'array',
65
+ description: 'Mock user groups for local development and testing',
66
+ example: '--groups admin user',
67
+ })
63
68
  .usage('usage: mintlify dev [options]')
64
69
  .example('mintlify dev', 'run with default settings (opens in browser)')
65
70
  .example('mintlify dev --no-open', 'run without opening in browser'),