diff options
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. |