From 21cb2576518308750422cb61deea3da5cd024fb0 Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Tue, 25 Apr 2023 21:26:08 -0700 Subject: [PATCH] Updates --- docs/rfcs/bun-build-config.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/rfcs/bun-build-config.ts b/docs/rfcs/bun-build-config.ts index 88bbdd90de..5c6f3cdf77 100644 --- a/docs/rfcs/bun-build-config.ts +++ b/docs/rfcs/bun-build-config.ts @@ -165,6 +165,7 @@ export type BuildManifest = { path: string; kind: ImportKind; external?: boolean; + asset?: boolean; // whether the import defaulted to "file" loader }[]; }; }; @@ -173,14 +174,10 @@ export type BuildManifest = { outputs: { [path: string]: { type: "chunk" | "entry-point" | "asset"; - inputs: { - [path: string]: { - bytesInOutput: number; - }; - }; + inputs: { path: string }[]; imports: { path: string; - kind: ImportKind | "file-loader"; + kind: ImportKind; external?: boolean; }[]; exports: string[];