mdream 1.0.7 → 1.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.
package/dist/edge.mjs CHANGED
@@ -1,6 +1,4 @@
1
- import { MarkdownStream as MarkdownStream$1, htmlToMarkdownResult, initSync } from "../wasm/mdream_edge.js";
2
- import wasmModule from "../wasm/mdream_edge_bg.wasm";
3
- initSync({ module: wasmModule });
1
+ import { MarkdownStream as MarkdownStream$1, htmlToMarkdownResult } from "../wasm-bundler/mdream_edge.js";
4
2
  function htmlToMarkdown(html, options) {
5
3
  return htmlToMarkdownResult(html, options || {}).markdown || "";
6
4
  }