diff options
author | 2023-09-07 10:09:09 -0700 | |
---|---|---|
committer | 2023-09-07 10:09:09 -0700 | |
commit | 5424ea3403df9cd4672290865f12b6f5b01cf2d0 (patch) | |
tree | 27e19a70fba49ffdd944c190163f5e8322d7a32f /docs/runtime/loaders.md | |
parent | 4b63ced72dc1b304e737d9ea055c8b6e75f46119 (diff) | |
download | bun-5424ea3403df9cd4672290865f12b6f5b01cf2d0.tar.gz bun-5424ea3403df9cd4672290865f12b6f5b01cf2d0.tar.zst bun-5424ea3403df9cd4672290865f12b6f5b01cf2d0.zip |
Doc updates for v1.0 (#4485)
* Remove v0.x messages
* Add windows section to Installatino
* update
* update
* Update
* Comment out windows
Diffstat (limited to 'docs/runtime/loaders.md')
-rw-r--r-- | docs/runtime/loaders.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/runtime/loaders.md b/docs/runtime/loaders.md index a483efbec..0135d9363 100644 --- a/docs/runtime/loaders.md +++ b/docs/runtime/loaders.md @@ -36,10 +36,6 @@ $ bun run react.tsx ## Text files -{% callout %} -Supported in Bun v0.6.0 canary. -{% /callout %} - Text files can be imported as strings. {% codetabs %} @@ -67,7 +63,11 @@ import data from "./data.toml"; ## WASM -As of v0.5.2, experimental support exists for WASI, the [WebAssembly System Interface](https://github.com/WebAssembly/WASI). To run a `.wasm` binary with Bun: +{% callout %} +🚧 **Experimental** +{% /callout %} + +Bun has experimental support for WASI, the [WebAssembly System Interface](https://github.com/WebAssembly/WASI). To run a `.wasm` binary with Bun: ```bash $ bun ./my-wasm-app.wasm |