diff options
author | 2021-09-03 13:19:36 -0700 | |
---|---|---|
committer | 2021-09-03 13:19:36 -0700 | |
commit | b85cfa52d0db096e3b31b6649a55c1b43132bfd0 (patch) | |
tree | f68584e8a922aeeafafe34b49e3dab405ebb715a /README.md | |
parent | a90760b597b5fa8eff001e82dfa9d80a4af00581 (diff) | |
download | bun-b85cfa52d0db096e3b31b6649a55c1b43132bfd0.tar.gz bun-b85cfa52d0db096e3b31b6649a55c1b43132bfd0.tar.zst bun-b85cfa52d0db096e3b31b6649a55c1b43132bfd0.zip |
loggers gonna log
Former-commit-id: cbf0b6750fbee21df6a78231e7050307c9af1d96
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -99,7 +99,17 @@ bun build ./routes --outdir=./out Unlike many other bundlers, `Bun` only bundles `node_modules`. This is great for development, where most people add/update packages much less frequently than app code (which is also great for caching in browsers). To make that distinction clear, the filename defaults to `node_modules.bun`. We recommend storing `node_modules.bun` in your git repository. Since it's a binary file, it shouldn't clutter your git history and it will make your entire frontend development team move faster if they don't have to re-bundle dependencies. -# Not implemented yet +# Things that don't work yet + +| Feature | In | +| ---------------------------------------------------- | --------------------- | +| [Private Class Fields](1) | JavaScript Transpiler | +| [Import Assertions](2) | JavaScript Transpiler | +| Un-quoted `.env` string values | .env loader | +| Sharing `.bun` files (must not write absolute paths) | JavaScript Bundler | + +[1]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Private_class_fields +[2]: https://github.com/tc39/proposal-import-assertions # Building from source |