aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-01-28 04:39:20 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-01-28 04:39:20 -0800
commit8f27b27a0e54f737b849dedf098209546f86b709 (patch)
tree8a6bee551247836627eca0c49ecba68bb5345ef3
parentaced5882d153dbe56b2d4d1e4989a10da0e2ed04 (diff)
downloadbun-8f27b27a0e54f737b849dedf098209546f86b709.tar.gz
bun-8f27b27a0e54f737b849dedf098209546f86b709.tar.zst
bun-8f27b27a0e54f737b849dedf098209546f86b709.zip
Update README.md
-rw-r--r--README.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/README.md b/README.md
index 66be198ce..d292f1286 100644
--- a/README.md
+++ b/README.md
@@ -1124,8 +1124,6 @@ export default jsx(
);
```
-Note that it automatically imports the modern JSX runtime
-
If a macro is used, it will be run in the same thread as the transpiler, but in a separate event loop from the rest of your application. Currently, globals between macros and regular code are shared, which means it is possible (but not recommended) to share state between macros and regular code. Attempting to use AST nodes outside of a macro is undefined behavior.
#### `Bun.Transpiler.transform`
@@ -1160,8 +1158,6 @@ export default jsx(
);
```
-Note that it automatically imports the modern JSX runtime.
-
You can also pass a `Loader` as a string
```js