aboutsummaryrefslogtreecommitdiff
path: root/docs/runtime/loaders.md
diff options
context:
space:
mode:
authorGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-09-07 10:09:09 -0700
committerGravatar GitHub <noreply@github.com> 2023-09-07 10:09:09 -0700
commit5424ea3403df9cd4672290865f12b6f5b01cf2d0 (patch)
tree27e19a70fba49ffdd944c190163f5e8322d7a32f /docs/runtime/loaders.md
parent4b63ced72dc1b304e737d9ea055c8b6e75f46119 (diff)
downloadbun-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.md10
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