claude-presentation-master 4.4.0 → 4.4.1

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/index.js CHANGED
@@ -3603,7 +3603,12 @@ var PresentationEngine = class {
3603
3603
  console.log("\u2705 Validating structure...");
3604
3604
  const structureErrors = this.validateStructure(slides, config.mode);
3605
3605
  if (structureErrors.length > 0) {
3606
- throw new ValidationError(structureErrors, "Slide structure validation failed");
3606
+ if (config.skipQA) {
3607
+ console.log("\u26A0\uFE0F Structure warnings (bypassed):");
3608
+ structureErrors.forEach((e) => console.log(` \u2022 ${e}`));
3609
+ } else {
3610
+ throw new ValidationError(structureErrors, "Slide structure validation failed");
3611
+ }
3607
3612
  }
3608
3613
  console.log("\u{1F528} Generating outputs...");
3609
3614
  const outputs = {};
package/dist/index.mjs CHANGED
@@ -3541,7 +3541,12 @@ var PresentationEngine = class {
3541
3541
  console.log("\u2705 Validating structure...");
3542
3542
  const structureErrors = this.validateStructure(slides, config.mode);
3543
3543
  if (structureErrors.length > 0) {
3544
- throw new ValidationError(structureErrors, "Slide structure validation failed");
3544
+ if (config.skipQA) {
3545
+ console.log("\u26A0\uFE0F Structure warnings (bypassed):");
3546
+ structureErrors.forEach((e) => console.log(` \u2022 ${e}`));
3547
+ } else {
3548
+ throw new ValidationError(structureErrors, "Slide structure validation failed");
3549
+ }
3545
3550
  }
3546
3551
  console.log("\u{1F528} Generating outputs...");
3547
3552
  const outputs = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-presentation-master",
3
- "version": "4.4.0",
3
+ "version": "4.4.1",
4
4
  "description": "Generate world-class presentations using expert methodologies from Duarte, Reynolds, Gallo, and Anderson. Enforces rigorous quality standards through real visual validation.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",