github kentcdodds/mdx-bundler v8.0.0

latest releases: v10.0.3, v10.0.2, v10.0.1...
2 years ago

8.0.0 (2021-11-18)

Features

BREAKING CHANGES

  • The first argument to bundleMDX has been removed in favor of a source and file 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
})

Don't miss a new mdx-bundler release

NewReleases is sending notifications on new releases.