@slidev/docs 52.9.1 → 52.10.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/builtin/cli.md CHANGED
@@ -59,6 +59,7 @@ Options:
59
59
  - `--base` (`string`, default: `/`): base URL (see https://vitejs.dev/config/shared-options.html#base)
60
60
  - `--download` (`boolean`, default: `false`): allow the download of the slides as a PDF inside the SPA
61
61
  - `--theme`, `-t` (`string`): override theme
62
+ - `--without-notes` (`boolean`, default: `false`): exclude speaker notes from the SPA
62
63
 
63
64
  ## `slidev export [...entry]` {#export}
64
65
 
package/guide/hosting.md CHANGED
@@ -34,6 +34,14 @@ You can change the output directory using `--out`.
34
34
  $ slidev build --out my-build-folder
35
35
  ```
36
36
 
37
+ ### Remove speaker notes {#without-notes}
38
+
39
+ If you are sharing the built slides publicly and don't want to include your speaker notes, run the build with `--without-notes`:
40
+
41
+ ```bash
42
+ $ slidev build --without-notes
43
+ ```
44
+
37
45
  ### Multiple Builds {#multiple-builds}
38
46
 
39
47
  You can build multiple slide decks in one go by passing multiple markdown files as arguments:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@slidev/docs",
3
3
  "type": "module",
4
- "version": "52.9.1",
4
+ "version": "52.10.1",
5
5
  "license": "MIT",
6
6
  "funding": "https://github.com/sponsors/antfu",
7
7
  "homepage": "https://sli.dev",
@@ -17,28 +17,28 @@
17
17
  ],
18
18
  "devDependencies": {
19
19
  "@antfu/utils": "^9.3.0",
20
- "@iconify/json": "^2.2.404",
21
- "@shikijs/vitepress-twoslash": "^3.15.0",
22
- "@types/node": "^24.10.0",
23
- "@unocss/reset": "^66.5.5",
24
- "@vueuse/core": "^14.0.0",
20
+ "@iconify/json": "^2.2.411",
21
+ "@shikijs/vitepress-twoslash": "^3.17.0",
22
+ "@types/node": "^24.10.1",
23
+ "@unocss/reset": "^66.5.9",
24
+ "@vueuse/core": "^14.1.0",
25
25
  "fast-glob": "^3.3.3",
26
26
  "gray-matter": "^4.0.3",
27
27
  "markdown-it": "^14.1.0",
28
- "shiki": "^3.15.0",
28
+ "shiki": "^3.17.0",
29
29
  "typeit": "8.1.0",
30
30
  "typescript": "^5.9.3",
31
- "unocss": "^66.5.5",
31
+ "unocss": "^66.5.9",
32
32
  "unplugin-icons": "^22.5.0",
33
33
  "unplugin-vue-components": "^30.0.0",
34
34
  "vite-plugin-inspect": "^11.3.3",
35
- "vitepress": "^2.0.0-alpha.12",
35
+ "vitepress": "^2.0.0-alpha.15",
36
36
  "vitepress-plugin-group-icons": "^1.6.5",
37
- "vitepress-plugin-llms": "^1.9.0",
38
- "vue": "^3.5.24",
39
- "@slidev/client": "52.9.1",
40
- "@slidev/parser": "52.9.1",
41
- "@slidev/types": "52.9.1"
37
+ "vitepress-plugin-llms": "^1.9.3",
38
+ "vue": "^3.5.25",
39
+ "@slidev/client": "52.10.1",
40
+ "@slidev/types": "52.10.1",
41
+ "@slidev/parser": "52.10.1"
42
42
  },
43
43
  "scripts": {
44
44
  "dev": "vitepress",