aboutsummaryrefslogtreecommitdiff
path: root/docs/runtime
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2023-06-21 19:54:00 -0700
committerGravatar GitHub <noreply@github.com> 2023-06-21 19:54:00 -0700
commit1f900cff453700b19bca2acadfe26da4468c1282 (patch)
tree4197fa9288b1f0522372a54211c14b3133c64019 /docs/runtime
parent522c9bbaaef5f40caca9e692abb15a238c8cd80b (diff)
parentbfb322d618a3f0e9618d311ae69016fe7a08e771 (diff)
downloadbun-1f900cff453700b19bca2acadfe26da4468c1282.tar.gz
bun-1f900cff453700b19bca2acadfe26da4468c1282.tar.zst
bun-1f900cff453700b19bca2acadfe26da4468c1282.zip
Merge branch 'main' into jarred/esm-conditions
Diffstat (limited to 'docs/runtime')
-rw-r--r--docs/runtime/modules.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/runtime/modules.md b/docs/runtime/modules.md
index 32bd78cc3..42f2a08e6 100644
--- a/docs/runtime/modules.md
+++ b/docs/runtime/modules.md
@@ -108,8 +108,8 @@ Once it finds the `foo` package, Bun reads the `package.json` to determine how t
"worker": "./index.js",
"module": "./index.js",
"node": "./index.js",
- "browser": "./index.js",
- "default": "./index.js" // lowest priority
+ "default": "./index.js",
+ "browser": "./index.js" // lowest priority
}
}
```