1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-11-29 13:58:02 +03:00

Add module for backwards compatibility

This commit is contained in:
Brent Jackson 2019-03-03 17:54:52 -05:00
parent 882e4c0d9b
commit 2724cbe7ad
3 changed files with 7 additions and 3 deletions

View File

@ -12,9 +12,9 @@ todo:
- [ ] timer/clock
- [ ] open new tab button
- [ ] overview highlighted state bug - MDXDeck doesn't render on link navigation
- [ ] set url query
- [ ] docs for customizing any component
- [x] set url query
- [x] BUG: import/export statements in code blocks
- [x] mdx-plugin: fix markdown table whitespace warnings
- [x] test with v1 demo deck & multiple elements per slide
@ -64,7 +64,7 @@ extras
- Removed PDF export from core
- Removed default Provider component with dot indicator
- Removes react-syntax-highlighter
- Removes react-syntax-highlighter from the core
- Syntax highlighting can now be completely controlled via themes
- Changes to print styles
- Removed Grid mode

View File

@ -0,0 +1,3 @@
export * from '@mdx-deck/components'
export * as themes from '@mdx-deck/themes'
export * as Layouts from '@mdx-deck/layouts'

View File

@ -5,6 +5,7 @@
"bin": {
"mdx-deck": "./cli.js"
},
"main": "index.js",
"scripts": {
"start": "./cli.js demo.mdx -p 8080",
"build": "./cli.js build demo.mdx -d public",