diff options
author | 2023-08-16 22:58:36 -0700 | |
---|---|---|
committer | 2023-08-16 22:58:36 -0700 | |
commit | b9b50e39d6d9da3603237d7c7efb8601f6862965 (patch) | |
tree | 3b2e82bfe5febe0a93d1b71925247b2ca2b29bcb | |
parent | 6c3dabd84e98f6bbb3ce8d4885d1b2d0421df52b (diff) | |
download | bun-b9b50e39d6d9da3603237d7c7efb8601f6862965.tar.gz bun-b9b50e39d6d9da3603237d7c7efb8601f6862965.tar.zst bun-b9b50e39d6d9da3603237d7c7efb8601f6862965.zip |
Fix broken link
-rw-r--r-- | docs/bundler/vs-esbuild.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/bundler/vs-esbuild.md b/docs/bundler/vs-esbuild.md index 463fcc13a..3c23d8a4e 100644 --- a/docs/bundler/vs-esbuild.md +++ b/docs/bundler/vs-esbuild.md @@ -897,7 +897,7 @@ const myPlugin: BunPlugin = { }; ``` -The `builder` object provides some methods for hooking into parts of the bundling process. Bun implements `onResolve` and `onLoad`; it does not yet implement the esbuild hooks `onStart`, `onEnd`, and `onDispose`, and `resolve` utilities. `initialOptions` is partially implemented, being read-only and only having a subset of esbuild's options; use [`config`](/docs/bundler/plugins#reading-the-config) (same thing but with Bun's `BuildConfig` format) instead. +The `builder` object provides some methods for hooking into parts of the bundling process. Bun implements `onResolve` and `onLoad`; it does not yet implement the esbuild hooks `onStart`, `onEnd`, and `onDispose`, and `resolve` utilities. `initialOptions` is partially implemented, being read-only and only having a subset of esbuild's options; use [`config`](/docs/bundler/plugins) (same thing but with Bun's `BuildConfig` format) instead. ```ts import type { BunPlugin } from "bun"; |