@mintlify/previewing 4.0.596 → 4.0.598

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.
@@ -11,6 +11,7 @@ const dev = async (argv) => {
11
11
  const localSchema = argv['local-schema'];
12
12
  const clientVersion = argv['client-version'];
13
13
  const packageName = argv.packageName;
14
+ const groups = argv.groups;
14
15
  await fse.ensureDir(DOT_MINTLIFY);
15
16
  const versionString = (await pathExists(VERSION_PATH))
16
17
  ? fse.readFileSync(VERSION_PATH, 'utf8')
@@ -45,7 +46,7 @@ const dev = async (argv) => {
45
46
  process.chdir(CLIENT_PATH);
46
47
  try {
47
48
  addLog(_jsx(SpinnerLog, { message: "preparing local preview..." }));
48
- await prebuild(CMD_EXEC_PATH, { localSchema });
49
+ await prebuild(CMD_EXEC_PATH, { localSchema, groups });
49
50
  }
50
51
  catch (err) {
51
52
  const errorText = err instanceof Error && err.message ? err.message : 'prebuild step failed';