@miragon/create-slidev-deck 1.0.0 → 1.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miragon/create-slidev-deck",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "Scaffold a lean Miragon Slidev deck: only the files a deck needs, with @miragon/slidev-toolkit pulled from npm. Run via `npm create @miragon/slidev-deck`.",
6
6
  "keywords": [
@@ -31,7 +31,7 @@
31
31
  "giget": "3.3.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@miragon/slidev-toolkit": "1.2.1"
34
+ "@miragon/slidev-toolkit": "1.3.0"
35
35
  },
36
36
  "files": [
37
37
  "bin",
@@ -24,7 +24,7 @@ Edit files under `deck/` and save — the preview updates instantly. Every demo
24
24
  | `deck/` | **Your content** — `slides.md` is the entry (cover + one `src:` import per chapter + closing); each chapter is a folder `deck/chapter/NN-name/` with its own `resources/`. |
25
25
  | `verify/` | Brand guardrails (`npm run verify`) — every slide declares a sanctioned layout, cards stay white, no em-dashes, headings black, diagrams light/transparent. |
26
26
  | `CLAUDE.md` + `.claude/skills/` | Authoring guidance for Claude Code, so a session knows the design system on the first prompt. |
27
- | `.github/workflows/` | **Build Deck** and **Pin Check** run on every push and PR. |
27
+ | `.github/workflows/` | **Build Deck** (static build plus `npm run verify:source`) and **Pin Check** run on every push and PR. |
28
28
 
29
29
  The deck consumes the toolkit by name (`theme: '@miragon/slidev-toolkit'`); you never touch the theme.
30
30
 
@@ -35,7 +35,8 @@ The deck consumes the toolkit by name (`theme: '@miragon/slidev-toolkit'`); you
35
35
  | `npm run dev` | Live preview on `:3030`; `p` for presenter mode, `o` for overview |
36
36
  | `npm run build` | Static `dist/` you can host anywhere |
37
37
  | `npm run export` | `slidev-exported.pdf` locally (needs Chromium) |
38
- | `npm run verify` | Screenshot + checklist per slide against the design rules |
38
+ | `npm run verify` | Full screenshot + checklist per slide against the design rules (local; needs a browser) |
39
+ | `npm run verify:source` | Fast source-only guardrail checks, no browser — the subset CI runs |
39
40
 
40
41
  ## Next steps
41
42