@tycoworks/tycoslide 0.11.0 → 0.11.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/README.md +2 -0
- package/SKILL.md +0 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -16,6 +16,8 @@ Create editable, on-brand PowerPoint slides from markdown.
|
|
|
16
16
|
npm install @tycoworks/tycoslide
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
Installing also downloads Chromium (~554MB), via `@playwright/browser-chromium`, which tycoslide uses to render mermaid diagrams. If you install with `--ignore-scripts`, run `npx playwright install chromium-headless-shell` before building a deck with diagrams.
|
|
20
|
+
|
|
19
21
|
Create `deck.md`:
|
|
20
22
|
|
|
21
23
|
```markdown
|
package/SKILL.md
CHANGED
|
@@ -162,7 +162,6 @@ Build the deck again ([Build](#build)) and read the output carefully. Common err
|
|
|
162
162
|
| YAML parse error | Fix the YAML syntax in the slide's frontmatter |
|
|
163
163
|
| `Skipped setting relation target` | The asset image couldn't be placed; check the path and file |
|
|
164
164
|
| `forbidden style directive` | Remove `style`, `classDef`, `linkStyle`, or `%%{init}` from your mermaid block -- use `class` for grouping instead |
|
|
165
|
-
| `Mermaid render failed` | The engine renders diagrams with Playwright's Chromium; install it once with `npx playwright install chromium` |
|
|
166
165
|
| `no "mermaid" block` | The theme has no mermaid color config -- add a `mermaid` section to theme.json |
|
|
167
166
|
|
|
168
167
|
### Verification Loop
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tycoworks/tycoslide",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "Create editable, on-brand PowerPoint slides from markdown.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,12 +23,13 @@
|
|
|
23
23
|
"format": "biome format --write ."
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
+
"@playwright/browser-chromium": "^1.62.1",
|
|
26
27
|
"@xmldom/xmldom": "^0.9.10",
|
|
27
28
|
"commander": "^15.0.0",
|
|
28
29
|
"image-size": "^2.0.2",
|
|
29
30
|
"jszip": "^3.10.1",
|
|
30
31
|
"mermaid": "^11.16.1",
|
|
31
|
-
"playwright": "^1.
|
|
32
|
+
"playwright": "^1.62.1",
|
|
32
33
|
"pptx-automizer": "^0.8.2",
|
|
33
34
|
"remark-gfm": "^4.0.1",
|
|
34
35
|
"remark-ins": "^1.2.5",
|