@bendyline/docblocks-cli 2.3.3 → 2.3.4

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.
Files changed (2) hide show
  1. package/dist/bin.js +10 -1
  2. package/package.json +7 -7
package/dist/bin.js CHANGED
@@ -3224,7 +3224,16 @@ Placeholder`).join("\n\n");
3224
3224
  const converted = await convert(
3225
3225
  { kind: "markdown", markdown: scaffold, baseName: "rendered" },
3226
3226
  "pptx",
3227
- { ...title === void 0 ? {} : { title }, signal }
3227
+ {
3228
+ ...title === void 0 ? {} : { title },
3229
+ signal,
3230
+ // The scaffold is a throwaway 1:1 frame->slide vehicle whose slides are
3231
+ // all overwritten below with captured images. Squisq's cover slide is on
3232
+ // by default; here it would prepend a slide built from the placeholder
3233
+ // text, shifting every frame by one and leaving the last scaffold slide
3234
+ // un-overwritten as a visible "Rendered slide N / Placeholder" page.
3235
+ formatOptions: { pptx: { includeCoverSlide: false } }
3236
+ }
3228
3237
  );
3229
3238
  throwIfAborted5(signal);
3230
3239
  const archive = await JSZip.loadAsync(converted.bytes);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bendyline/docblocks-cli",
3
- "version": "2.3.3",
3
+ "version": "2.3.4",
4
4
  "description": "Build, preview, convert, render, inspect, and automate documents",
5
5
  "license": "MIT",
6
6
  "author": "Bendyline",
@@ -47,12 +47,12 @@
47
47
  "typecheck": "tsc --noEmit"
48
48
  },
49
49
  "dependencies": {
50
- "@bendyline/docblocks": "2.3.3",
51
- "@bendyline/squisq": "2.7.0",
52
- "@bendyline/squisq-cli": "2.5.2",
53
- "@bendyline/squisq-formats": "2.4.1",
54
- "@bendyline/squisq-react": "2.7.0",
55
- "@bendyline/squisq-video": "2.2.11",
50
+ "@bendyline/docblocks": "2.3.4",
51
+ "@bendyline/squisq": "2.7.1",
52
+ "@bendyline/squisq-cli": "2.5.3",
53
+ "@bendyline/squisq-formats": "2.4.2",
54
+ "@bendyline/squisq-react": "2.7.1",
55
+ "@bendyline/squisq-video": "2.2.12",
56
56
  "@modelcontextprotocol/sdk": "1.29.0",
57
57
  "commander": "13.1.0",
58
58
  "jszip": "3.10.1",