diff options
author | 2023-08-02 18:46:57 -0700 | |
---|---|---|
committer | 2023-08-02 18:46:57 -0700 | |
commit | aaaaf744a80bc2876b4edc174a0d86c11625ec20 (patch) | |
tree | d0dc3a8b713c2f88f7a3acfc7b6faf8d5f2eb003 /docs/runtime | |
parent | 207c7eb50955eb6f8f4b92fbf5a5955c23ec7e65 (diff) | |
download | bun-aaaaf744a80bc2876b4edc174a0d86c11625ec20.tar.gz bun-aaaaf744a80bc2876b4edc174a0d86c11625ec20.tar.zst bun-aaaaf744a80bc2876b4edc174a0d86c11625ec20.zip |
Remove module and browser conditions (#3935)
* fix astro compiler
* clean this up
* Update options.zig
---------
Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
Diffstat (limited to 'docs/runtime')
-rw-r--r-- | docs/runtime/modules.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/runtime/modules.md b/docs/runtime/modules.md index 42f2a08e6..9b8f083d1 100644 --- a/docs/runtime/modules.md +++ b/docs/runtime/modules.md @@ -108,8 +108,7 @@ Once it finds the `foo` package, Bun reads the `package.json` to determine how t "worker": "./index.js", "module": "./index.js", "node": "./index.js", - "default": "./index.js", - "browser": "./index.js" // lowest priority + "default": "./index.js", // lowest priority } } ``` |