aboutsummaryrefslogtreecommitdiff
path: root/docs/upgrading-webkit.md
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-07-27 21:18:58 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-07-27 21:18:58 -0700
commit7c5c4f5694d23fb45aa7bfa273fb10611da2173c (patch)
treeba3652478b9323cb69c82c720c7de3e4bca0527a /docs/upgrading-webkit.md
parent6b25e6935e7bbfa42aa2a36e2a8f9a4907c8cf64 (diff)
downloadbun-7c5c4f5694d23fb45aa7bfa273fb10611da2173c.tar.gz
bun-7c5c4f5694d23fb45aa7bfa273fb10611da2173c.tar.zst
bun-7c5c4f5694d23fb45aa7bfa273fb10611da2173c.zip
Clean up some things with the devcontainer
Diffstat (limited to 'docs/upgrading-webkit.md')
-rw-r--r--docs/upgrading-webkit.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/upgrading-webkit.md b/docs/upgrading-webkit.md
index dc67e9e09..ac14885f7 100644
--- a/docs/upgrading-webkit.md
+++ b/docs/upgrading-webkit.md
@@ -44,14 +44,14 @@ src/bun.js/WebKit/WebKitBuild/Release/bin/jsc --help
Then, clear out our bindings and regenerate the C++<>Zig headers:
```bash
-make clean-bindings jsc-bindings-headers generate-builtins
+make clean-bindings headers builtins
```
Now update Bun's bindings wherever there are compiler errors:
```bash
# It will take awhile if you don't pass -j here
-make jsc-bindings-mac -j10
+make bindings -j10
```
This is the hard part. It might involve digging through WebKit's commit history to figure out what changed and why. Fortunately, WebKit contributors write great commit messages.