diff options
author | 2023-06-01 21:16:47 -0400 | |
---|---|---|
committer | 2023-06-01 18:16:47 -0700 | |
commit | 4df1d37ddc54242c339765f22fb90ba2e9e3a99a (patch) | |
tree | d63ede76463e7ecba78a4d4b31e5e8158193552f /docs/project/development.md | |
parent | 03ffd1c732aaaa30b5481f197221ce96da559e63 (diff) | |
download | bun-4df1d37ddc54242c339765f22fb90ba2e9e3a99a.tar.gz bun-4df1d37ddc54242c339765f22fb90ba2e9e3a99a.tar.zst bun-4df1d37ddc54242c339765f22fb90ba2e9e3a99a.zip |
Bundle and minify `.exports.js` files. (#3036)
* move all exports.js into src/js
* finalize the sort of this
* and it works
* add test.ts to gitignore
* okay
* convert some to ts just to show
* finish up
* fixup makefile
* minify syntax in dev
* finish rebase
* dont minify all modules
* merge
* finish rebase merge
* flaky test that hangs
Diffstat (limited to 'docs/project/development.md')
-rw-r--r-- | docs/project/development.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/project/development.md b/docs/project/development.md index 8f71c234f..8d90aabac 100644 --- a/docs/project/development.md +++ b/docs/project/development.md @@ -104,13 +104,13 @@ VSCode is the recommended IDE for working on Bun, as it has been configured. Onc ## JavaScript builtins -When you change anything in `src/bun.js/builtins/js/*` or switch branches, run this: +When you change anything in `src/js/builtins/*` or switch branches, run this: ```bash $ make regenerate-bindings ``` -That inlines the JavaScript code into C++ headers using the same builtins generator script that Safari uses. +That inlines the TypeScript code into C++ headers. {% callout %} Make sure you have `ccache` installed, otherwise regeneration will take much longer than it should. |