diff options
author | 2022-04-18 21:56:20 -0700 | |
---|---|---|
committer | 2022-04-18 21:56:20 -0700 | |
commit | a4b8fccfa70507c80cc5666cc14c9c37ac201a15 (patch) | |
tree | 355d2163e1bacc463c9c475b4213b94fd97d9925 | |
parent | 9822ea96b857e4a01b55e6b33d135609c17e10aa (diff) | |
download | bun-a4b8fccfa70507c80cc5666cc14c9c37ac201a15.tar.gz bun-a4b8fccfa70507c80cc5666cc14c9c37ac201a15.tar.zst bun-a4b8fccfa70507c80cc5666cc14c9c37ac201a15.zip |
[misc] explain why wasm isn't released yet
-rw-r--r-- | packages/bun-wasm/test/node.mjs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/bun-wasm/test/node.mjs b/packages/bun-wasm/test/node.mjs index 92162fa4f..7890a5c6e 100644 --- a/packages/bun-wasm/test/node.mjs +++ b/packages/bun-wasm/test/node.mjs @@ -1,5 +1,8 @@ +// This is not released yet because there are some memory bugs with the WASM build +// It causes syntax errors which don't make any sense +// Most likely, this is an issue with some code expecting 64 bit pointers +// That's also why this test just prints instead of using a test runner import * as Bun from "../index.mjs"; -import process from "process"; await Bun.init(new URL("../bun.wasm", import.meta.url)); |