-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow slides to be converted into a downloadable PDF. It was necessary to add Playwright as this is the framework used to create screenshots which can be combined into a PDF. An option had to be provided to make sure slides that had click transitions were correctly handled as individual pages.
- Loading branch information
1 parent
a8e8cfe
commit bfa4e42
Showing
4 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"scripts": { | ||
"build": "slidev build", | ||
"dev": "slidev --open", | ||
"export": "slidev export" | ||
"export": "slidev export --with-clicks" | ||
}, | ||
"dependencies": { | ||
"@slidev/cli": "^0.48.3", | ||
|
@@ -21,7 +21,8 @@ | |
"@iconify-json/grommet-icons": "^1.1.10", | ||
"@iconify-json/noto": "^1.1.18", | ||
"@iconify-json/pajamas": "^1.1.40", | ||
"@iconify-json/radix-icons": "^1.1.14" | ||
"@iconify-json/radix-icons": "^1.1.14", | ||
"playwright-chromium": "^1.42.1" | ||
}, | ||
"packageManager": "[email protected]+sha256.f3cc0eda8e5560e529c7147565b30faa43b4e472d90e8634d7134a37c7f59781" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters