Releases: kentcdodds/mdx-bundler
Releases · kentcdodds/mdx-bundler
v8.0.1
v8.0.0
8.0.0 (2021-11-18)
Features
BREAKING CHANGES
- The first argument to
bundleMDX
has been removed in favor of asource
andfile
option.
const mdxSource = `
---
title: foo
---
Some content
`
// old
bundleMDX(mdxSource, {
// some options
})
// new
bundleMDX({
source: mdxSource,
// some options
})
const filePath = path.join(process.cwd(), 'sample.mdx')
//old
bundleMDXFile(fiilePath, {
// some options
})
// new
bundleMDX({
file: filePath,
// some options
})
v7.0.0
7.0.0 (2021-11-05)
Features
BREAKING CHANGES
- This updates xdm to the latest version (which is a major version bump). No breaking changes are expected, but we're being cautious.
v6.0.3
v6.0.2
v6.0.1
v6.0.0
6.0.0 (2021-08-13)
Features
BREAKING CHANGES
- Update to xdm@2. This version should be safe to upgrade to without any changes, but it's possible there will be some breaking changes in some transitive dependencies that could affect you.