miriad-viz 0.9.4 → 0.9.5

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/dist-cli/index.js CHANGED
@@ -1425,6 +1425,7 @@ Options:
1425
1425
  --platform Platform target: 'cast' (old, default) or 'redux' (new) (for init)
1426
1426
  --pad-start <dur> Pad timeline before first event (e.g., 5s, 30s, 2m)
1427
1427
  --pad-end <dur> Pad timeline after last event (e.g., 5s, 30s, 2m)
1428
+ --no-trim Disable auto-trimming git/PR data to message window
1428
1429
  --draft Render at half resolution (for render)
1429
1430
  --skip-audio Skip audio step (render silent video)
1430
1431
  --audio-approved Mark audio as reviewed and approved
@@ -1769,11 +1770,12 @@ async function main() {
1769
1770
  await runExtract({
1770
1771
  projectDir,
1771
1772
  progress,
1772
- repoPath: typeof flags["repo-path"] === "string" ? flags["repo-path"] : void 0,
1773
+ repoPath: typeof flags["repo-path"] === "string" ? flags["repo-path"] : progress.extractConfig?.repoPath,
1773
1774
  chatInput: typeof flags["chat-input"] === "string" ? flags["chat-input"] : void 0,
1774
1775
  artifactInput: typeof flags["artifact-input"] === "string" ? flags["artifact-input"] : void 0,
1775
1776
  from: typeof flags.from === "string" ? flags.from : void 0,
1776
- to: typeof flags.to === "string" ? flags.to : void 0
1777
+ to: typeof flags.to === "string" ? flags.to : void 0,
1778
+ noTrim: flags["no-trim"] === true
1777
1779
  });
1778
1780
  break;
1779
1781
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miriad-viz",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/snorrees/miriad-viz.git"