yumiamd 0.1.9 → 0.1.13

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/README.md CHANGED
@@ -49,23 +49,35 @@ pnpm add yumiamd
49
49
  Once installed globally or locally, the `yumia` / `yumiamd` commands are available in your terminal:
50
50
 
51
51
  ```bash
52
- # Initialize a new presentation template
53
- yumia init my-presentation
52
+ # Initialize a new presentation template (supports --theme and custom color overrides)
53
+ yumia init my-presentation --theme cyberpunk --primary "#FF2E88"
54
+
55
+ # Start instant live-reload dev server with HTML preview (zero config!)
56
+ yumia dev presentation.yumia.md --open
57
+
58
+ # Compile to native editable PowerPoint (.pptx)
59
+ yumia build presentation.yumia.md --out dist/presentation.pptx
60
+
61
+ # Compile to crisp vector PDF document (.pdf)
62
+ yumia build presentation.yumia.md --format pdf --out dist/presentation.pdf
63
+
64
+ # Compile to standalone interactive HTML5 presentation deck (.html)
65
+ yumia build presentation.yumia.md --format html --out dist/presentation.html
66
+
67
+ # Watch presentation file and recompile automatically on save
68
+ yumia watch presentation.yumia.md --format pdf
54
69
 
55
70
  # Validate markdown syntax and AST structure (supports --json for CI & AI agents)
56
71
  yumia validate presentation.yumia.md --json
57
72
 
58
- # Lint presentation for vertical overflow and layout issues
59
- yumia lint presentation.yumia.md --json
73
+ # Lint presentation for overflow, high density, and layout issues
74
+ yumia lint presentation.yumia.md --strict
60
75
 
61
76
  # Inspect parsed AST and computed layout bounding boxes
62
77
  yumia inspect presentation.yumia.md --layout
63
78
 
64
79
  # Export machine-readable JSON schema for LLMs & AI prompt generation
65
80
  yumia schema
66
-
67
- # Compile to native editable PowerPoint (.pptx)
68
- yumia build presentation.yumia.md --out dist/presentation.pptx
69
81
  ```
70
82
 
71
83
  ---
package/dist/bin.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runCli
4
- } from "./chunk-F3CX7UG6.js";
4
+ } from "./chunk-6GEDN7OB.js";
5
5
 
6
6
  // src/bin.ts
7
7
  var result = await runCli(process.argv);