diff --git a/README.md b/README.md index 3f8b09a..982fc04 100644 --- a/README.md +++ b/README.md @@ -18,21 +18,21 @@ I started to create the `next-mdx-remote-client` in line with the mindset of the The **`next-mdx-remote-client`** serves as a **viable alternative to `next-mdx-remote`** having more features. -| Feature | `next-mdx-remote` | `next-mdx-remote-client` | -| -------------------------------------------------------------- | :---------------: | :----------------------: | -| support MDX version 3 | canary | stable | -| provide internal error handling mechanism in `app` router | ❌ | ✅ | -| provide internal error handling mechanism in `pages` router | ❌ | ✅ | -| support export-from-MDX in `app` router | ❌ | ✅ | -| support export-from-MDX in `pages` router | ❌ | ✅ | -| support import-into-MDX in `app` router | ❌ | ✅ | -| support import-into-MDX in `pages` router | ❌ | ❌ | -| support disabling imports and exports in MDX | ✅ | ✅ | -| support passing `vfile.data` into the `scope` | ❌ | ✅ | -| get frontmatter and mutated scope in `app` router | ❌ | ✅ | -| get frontmatter and mutated scope in `pages` router | ✅ | ✅ | -| provide utility for getting frontmatter without compiling | ❌ | ✅ | -| expose components and types from `@mdx-js/mdx` | ❌ | ✅ | +| Feature | `next-mdx-remote` | `next-mdx-remote-client` | +| ---------------------------------------------------------- | :-----------------: | :----------------------: | +| support MDX version 3 | canary | stable | +| ensure internal error handling mechanism in `app` router | ❌ | ✅ | +| ensure internal error handling mechanism in `pages` router | ❌ | ✅ | +| support export-from-MDX in `app` router | ❌ | ✅ | +| support export-from-MDX in `pages` router | ❌ | ✅ | +| support import-into-MDX in `app` router | ❌ | ✅ | +| support import-into-MDX in `pages` router | ❌ | ❌ | +| support disabling imports and exports in MDX | ✅ | ✅ | +| support passing `vfile.data` into the `scope` | ❌ | ✅ | +| get frontmatter and mutated scope in `app` router | ❌ | ✅ | +| get frontmatter and mutated scope in `pages` router | ✅ | ✅ | +| provide utility for getting frontmatter without compiling | ❌ | ✅ | +| expose components and types from `@mdx-js/mdx` | ❌ | ✅ | > [!IMPORTANT] > You will see a lot the abbreviatons **`csr`** and **`rsc`**. _Pay attention to the both are spelled backwards._\ diff --git a/package.json b/package.json index e2c6a5c..84e4915 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "next-mdx-remote-client", "description": "A wrapper of the `@mdx-js/mdx` for the `nextjs` applications in order to load MDX content. It is a fork of `next-mdx-remote`.", - "version": "1.0.1", + "version": "1.0.2", "main": "./dist/csr/index.js", "types": "./dist/csr/index.d.ts", "type": "module",