Skip to content

Commit f6fc127

Browse files
authored
Merge branch 'main' into fixes
2 parents 4fb1973 + 9992aff commit f6fc127

File tree

23 files changed

+1255
-963
lines changed

23 files changed

+1255
-963
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ jobs:
3636
run: pnpm run publish
3737
working-directory: ./packages/vscode
3838
env:
39-
VSCE_TOKEN: ${{secrets.VSCE_TOKEN}}
40-
OVSX_TOKEN: ${{secrets.OVSX_TOKEN}}
39+
VSCE_TOKEN: ${{secrets.VSCE_PAT}}
40+
OVSX_TOKEN: ${{secrets.OVSX_PAT}}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
*-export
99
*.local
1010
*.pdf
11+
.env
1112
assets/demo
1213
components.d.ts
1314
composable-vue-cn

docs/.vitepress/config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,5 +157,9 @@ export default defineConfig({
157157
label: '简体中文',
158158
link: 'https://cn.sli.dev/',
159159
},
160+
ja: {
161+
label: '日本語',
162+
link: 'https://ja.sli.dev/',
163+
},
160164
},
161165
})

docs/builtin/cli.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Options:
5959
- `--base` (`string`, default: `/`): base URL (see https://vitejs.dev/config/shared-options.html#base)
6060
- `--download` (`boolean`, default: `false`): allow the download of the slides as a PDF inside the SPA
6161
- `--theme`, `-t` (`string`): override theme
62+
- `--without-notes` (`boolean`, default: `false`): exclude speaker notes from the SPA
6263

6364
## `slidev export [...entry]` {#export}
6465

docs/guide/hosting.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ You can change the output directory using `--out`.
3434
$ slidev build --out my-build-folder
3535
```
3636

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+
3745
### Multiple Builds {#multiple-builds}
3846

3947
You can build multiple slide decks in one go by passing multiple markdown files as arguments:

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@slidev/docs",
33
"type": "module",
4-
"version": "52.9.1",
4+
"version": "52.10.1",
55
"license": "MIT",
66
"funding": "https://github.com/sponsors/antfu",
77
"homepage": "https://sli.dev",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"type": "module",
3-
"version": "52.9.1",
3+
"version": "52.10.1",
44
"private": true,
5-
"packageManager": "pnpm@10.21.0",
5+
"packageManager": "pnpm@10.24.0",
66
"engines": {
77
"node": ">=18.0.0"
88
},

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@slidev/client",
33
"type": "module",
4-
"version": "52.9.1",
4+
"version": "52.10.1",
55
"description": "Presentation slides for developers",
66
"author": "Anthony Fu <[email protected]>",
77
"license": "MIT",

packages/create-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "create-slidev",
33
"type": "module",
4-
"version": "52.9.1",
4+
"version": "52.10.1",
55
"description": "Create starter template for Slidev",
66
"author": "Anthony Fu <[email protected]>",
77
"license": "MIT",

packages/create-app/template/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"export": "slidev export"
99
},
1010
"dependencies": {
11-
"@slidev/cli": "^52.9.1",
11+
"@slidev/cli": "^52.10.1",
1212
"@slidev/theme-default": "latest",
1313
"@slidev/theme-seriph": "latest",
14-
"vue": "^3.5.24"
14+
"vue": "^3.5.25"
1515
}
1616
}

0 commit comments

Comments
 (0)