perso-dubbing 0.2.0 → 0.4.0

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.
@@ -18,7 +18,7 @@ function parseArg(arg) {
18
18
  try {
19
19
  const prepared = parseArg(process.argv[2]);
20
20
  const spaceSeq = Number(process.env.PERSO_SPACE_SEQ) || (await resolveSpace());
21
- const result = await resolveChunks(prepared, spaceSeq);
21
+ const result = await resolveChunks(prepared, spaceSeq, { allowSplit: true }); // debug tool: split without the pre-confirm gate
22
22
  console.log(JSON.stringify(result));
23
23
  } catch (e) {
24
24
  console.error(e.message);