@stream-mdx/mermaid 0.0.3 → 0.1.1

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/CHANGELOG.md +12 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @stream-mdx/mermaid
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Refine streaming scheduling and list layout, add worker append batching/debug state support, and refresh docs/README examples.
8
+
9
+ ## 0.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 294e557: Release StreamMDX 0.1.0 across all published packages.
14
+
3
15
  ## 0.0.3
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-mdx/mermaid",
3
- "version": "0.0.3",
3
+ "version": "0.1.1",
4
4
  "description": "Mermaid diagram rendering addon for StreamMDX (Streaming Markdown V2)",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -30,7 +30,7 @@
30
30
  "sideEffects": false,
31
31
  "scripts": {
32
32
  "build": "tsup",
33
- "test": "tsx __tests__/*.test.ts",
33
+ "test": "tsx ../../scripts/run-tests.ts __tests__",
34
34
  "clean": "rm -rf dist",
35
35
  "prepack": "npm run build"
36
36
  },