@ecopages/mdx 0.2.0-alpha.34 → 0.2.0-alpha.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/CHANGELOG.md +0 -34
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecopages/mdx",
3
- "version": "0.2.0-alpha.34",
3
+ "version": "0.2.0-alpha.36",
4
4
  "description": "MDX plugin for Ecopages",
5
5
  "keywords": [
6
6
  "ecopages",
@@ -42,7 +42,7 @@
42
42
  "@mdx-js/mdx": "^3.1.0"
43
43
  },
44
44
  "dependencies": {
45
- "@ecopages/logger": "^0.2.2",
45
+ "@ecopages/logger": "^0.2.3",
46
46
  "source-map": "^0.7.6",
47
47
  "vfile": "^6.0.3"
48
48
  }
package/CHANGELOG.md DELETED
@@ -1,34 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to `@ecopages/mdx` are documented here.
4
-
5
- > **Note:** Changelog tracking begins at version `0.2.0`. Changes prior to this release are not recorded here but are available in the git history.
6
-
7
- ## [UNRELEASED] — TBD
8
-
9
- ### Features
10
-
11
- - Added standalone non-React MDX server rendering with async compilation and opt-in `.md` support.
12
-
13
- ### Bug Fixes
14
-
15
- - Fixed loader registration, Node `source-map` interop, and renderer-owned mixed foreign-subtree rendering for standalone MDX routes.
16
- - Fixed standalone MDX foreign-subtree payload compatibility coverage and removed the plugin/renderer integration-name import cycle.
17
-
18
- ### Documentation
19
-
20
- - Updated the README for standalone non-React MDX usage, `.md` opt-in handling, and compiler configuration.
21
-
22
- ### Tests
23
-
24
- - Added renderer-level coverage for the foreign-subtree payload compatibility contract.
25
-
26
- ### Refactoring
27
-
28
- - Replaced the standalone MDX renderer factory with explicit renderer-owned compiler configuration and collected shared MDX plugin and renderer types into a dedicated module.
29
-
30
- ---
31
-
32
- ## Migration Notes
33
-
34
- - Use `reactPlugin({ mdx: { enabled: true } })` for React-backed MDX routes; the standalone `@ecopages/mdx` plugin now targets non-React JSX runtimes.