diff options
author | 2021-04-24 09:41:09 -0700 | |
---|---|---|
committer | 2021-04-24 09:41:09 -0700 | |
commit | c4ef0311431ae57a894d3a5f15d40d2528a01f6b (patch) | |
tree | d7965a86d36dc89e2f669289f3105c9fa1b512ab | |
parent | ec66b1819a2fd218c62c069d29aab7eed482f6e9 (diff) | |
download | bun-c4ef0311431ae57a894d3a5f15d40d2528a01f6b.tar.gz bun-c4ef0311431ae57a894d3a5f15d40d2528a01f6b.tar.zst bun-c4ef0311431ae57a894d3a5f15d40d2528a01f6b.zip |
WIP
-rw-r--r-- | README.md | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -67,12 +67,6 @@ If bundler means "turn my development code into something a browser can run", Key: -- ✅ means "compatible" -- ❌ means "not supported, and no plans to change that" -- ⌛ means "in-progress" -- 🗓️ means "planned" or "eventually but work has not started" -- ❓ means "unknown" - | Feature | esbuild | esdev | | ---------------------------------- | ------- | ----- | | Minification | ✅ | ❌ | @@ -82,7 +76,20 @@ Key: | React Fast Refresh | ❌[1] | ⌛ | | Tree Shaking | ✅ | ⌛ | | Incremental builds | ✅ | ⌛ | +| CSS | ✅ | 🗓️ | | Support older browsers | ✅ | ❌[2] | | Plugins | ✅ | ⌛[3] | | AST Plugins | ❌ | ❌[4] | | Filesystem Cache API (for plugins) | ❓ | 🗓️[4] | + +Key: +|Tag | Meaning +|----|----------------------------------------------| +| ✅ | "compatible" | +| ❌ | "not supported, and no plans to change that" | +| ⌛ | "in-progress" | +| 🗓️ | "planned" or "eventually but work has not started" | +| ❓ | "unknown" | + +Citations: +[1]: |