diff options
author | 2023-05-05 13:32:05 -0700 | |
---|---|---|
committer | 2023-05-30 17:54:23 -0700 | |
commit | d3d22dc4f7303a4ac2817b4384693f42acc8849d (patch) | |
tree | adb798dac587692da59aaf1bfc6a8406dc95e16a | |
parent | 21cb2576518308750422cb61deea3da5cd024fb0 (diff) | |
download | bun-d3d22dc4f7303a4ac2817b4384693f42acc8849d.tar.gz bun-d3d22dc4f7303a4ac2817b4384693f42acc8849d.tar.zst bun-d3d22dc4f7303a4ac2817b4384693f42acc8849d.zip |
Updates
-rw-r--r-- | docs/rfcs/bun-build-config.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/rfcs/bun-build-config.ts b/docs/rfcs/bun-build-config.ts index 5c6f3cdf7..52af4a33f 100644 --- a/docs/rfcs/bun-build-config.ts +++ b/docs/rfcs/bun-build-config.ts @@ -158,9 +158,7 @@ export interface BundlerConfig { export type BuildManifest = { inputs: { [path: string]: { - output: { - path: string; - }; + output: string; // path to corresponding entry bundle imports: { path: string; kind: ImportKind; @@ -181,6 +179,7 @@ export type BuildManifest = { external?: boolean; }[]; exports: string[]; + entrypoint?: string; }; }; }; |