@mintlify/previewing 4.0.521 → 4.0.522

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.
@@ -99,8 +99,9 @@ const dev = (argv) => __awaiter(void 0, void 0, void 0, function* () {
99
99
  fse.emptyDirSync(NEXT_PUBLIC_PATH);
100
100
  fse.emptyDirSync(NEXT_PROPS_PATH);
101
101
  process.chdir(CLIENT_PATH);
102
+ const localSchema = argv['local-schema'];
102
103
  try {
103
- yield prebuild(CMD_EXEC_PATH);
104
+ yield prebuild(CMD_EXEC_PATH, { localSchema });
104
105
  }
105
106
  catch (err) {
106
107
  const errorText = err instanceof Error && err.message ? err.message : 'Prebuild step failed';