1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-10-26 07:37:23 +03:00

Update dependencies

This commit is contained in:
Brent Jackson 2020-01-29 16:47:40 -05:00
parent 961fd03e53
commit 8f850561f7
13 changed files with 623 additions and 504 deletions

View File

@ -15,6 +15,7 @@
- **Deprecated:** Fixed aspect ratio has been removed
- Bug fixes
- Update dependencies
- **Deprecated:** `gatsby-theme-mdx-deck`: no longer resolves title from first heading
## v3.0.13 2019-09-23

View File

@ -106,14 +106,6 @@ class extends React.Component {
---
<div>A</div>
<Steps>
<div>B</div>
<div>C</div>
</Steps>
---
<img src='https://source.unsplash.com/random/768x2048?new_york' />
<Notes>

View File

@ -17,10 +17,10 @@
},
"devDependencies": {
"cypress": "^3.4.0",
"husky": "^3.0.0",
"husky": "^4.2.1",
"jest": "^24.3.1",
"lerna": "^3.13.1",
"lint-staged": "^9.1.0",
"lint-staged": "^10.0.4",
"prettier": "^1.16.4",
"start-server-and-test": "^1.9.1"
},

View File

@ -10,7 +10,7 @@
"dependencies": {
"chalk": "^3.0.0",
"initit": "^1.0.0-2",
"meow": "^5.0.0"
"meow": "^6.0.0"
},
"gitHead": "2e6e342cccc32569fd7e2ae2a0711dd91e58d59f"
}

View File

@ -16,7 +16,7 @@
"dependencies": {
"@mdx-js/loader": "^1.5.3",
"@mdx-js/mdx": "^1.5.3",
"gatsby-page-utils": "^0.0.37",
"gatsby-page-utils": "^0.0.38",
"gatsby-plugin-react-helmet": "^3.1.18",
"hhmmss": "^1.0.0",
"react-helmet": "^5.2.1",

View File

@ -98,6 +98,7 @@ const Presenter = props => {
</div>
<Flex
sx={{
alignItems: 'baseline',
fontFamily: '"Roboto Mono", Menlo, monospace',
}}>
<Box>
@ -108,11 +109,12 @@ const Presenter = props => {
target='_blank'
title='Open in new window'
sx={{
ml: 3,
fontWeight: 'bold',
color: 'inherit',
textDecoration: 'none',
}}>
</a>
<Box mx='auto' />
<Box>

View File

@ -11,5 +11,8 @@ Does HMR break with this change?
---
Adding another slide...
Beep boop bop
---
Or not

View File

@ -43,9 +43,8 @@ const mdxResolverPassthrough = fieldName => async (
return result
}
exports.sourceNodes = ({ actions, schema }) => {
const { createTypes } = actions
createTypes(
exports.createSchemaCustomization = ({ actions, schema }) => {
actions.createTypes(
schema.buildObjectType({
name: `Deck`,
fields: {

View File

@ -31,18 +31,18 @@
"gatsby-plugin-emotion": "^4.1.0",
"gatsby-plugin-mdx": "^1.0.13",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-theme-ui": "^0.2.6",
"gatsby-plugin-theme-ui": "^0.3.0",
"gatsby-remark-import-code": "^0.1.1",
"gatsby-source-filesystem": "^2.1.3",
"hhmmss": "^1.0.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.1",
"mkdirp": "^0.5.1",
"mkdirp": "^1.0.3",
"react-helmet": "^6.0.0-beta",
"react-swipeable": "^5.3.0",
"remark-emoji": "^2.0.2",
"remark-unwrap-images": "^1.0.0",
"theme-ui": "^0.2.14"
"theme-ui": "^0.3.1"
},
"gitHead": "2e6e342cccc32569fd7e2ae2a0711dd91e58d59f"
}

View File

@ -18,12 +18,11 @@ MDX Deck v4
- [x] Print mode
- [x] Grid mode
- [x] page up/down
- [ ] Deprecate layouts/docs??
- [ ] Clean up docs/readme
- [x] Deprecate layouts/docs??
- [x] Clean up docs/readme
- [x] theme.components
- [-] Changelog
- [ ] Clean up demo
- [ ] Changelog
- [ ] ~~merge themes~~
- [ ] theme.components
</Notes>

View File

@ -16,15 +16,15 @@
"license": "MIT",
"repository": "github:jxnblk/mdx-deck",
"dependencies": {
"@mdx-deck/gatsby-plugin": "^3.0.13",
"@mdx-deck/themes": "^3.0.8",
"chalk": "^3.0.0",
"execa": "^3.2.0",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"gatsby": "^2.13.24",
"gatsby-plugin-compile-es6-packages": "^2.0.0",
"@mdx-deck/gatsby-plugin": "^3.0.13",
"initit": "^1.0.0-2",
"meow": "^5.0.0",
"meow": "^6.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},

View File

@ -10,8 +10,8 @@
"test": "./cli.js http://localhost:8000/print -o ../../docs/dist"
},
"dependencies": {
"meow": "^5.0.0",
"mkdirp": "^0.5.1",
"meow": "^6.0.0",
"mkdirp": "^1.0.3",
"puppeteer": "^2.0.0"
},
"gitHead": "2e6e342cccc32569fd7e2ae2a0711dd91e58d59f"

1071
yarn.lock

File diff suppressed because it is too large Load Diff