File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/wrangler/src/deployment-bundle Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -393,7 +393,7 @@ export async function bundleWorker(
393393
394394 const unenvResolvePaths = getUnenvResolvePathsFromEnv ( ) ?. split ( "," ) ;
395395
396- const buildOptions : esbuild . BuildOptions & { metafile : true } = {
396+ const buildOptions = {
397397 // Don't use entryFile here as the file may have been changed when applying the middleware
398398 entryPoints : [ entry . file ] ,
399399 bundle,
@@ -460,7 +460,7 @@ export async function bundleWorker(
460460 // logging, we disable esbuild's default logging, and log build failures
461461 // ourselves.
462462 logLevel : "silent" ,
463- } ;
463+ } satisfies esbuild . BuildOptions ;
464464
465465 let result : esbuild . BuildResult < typeof buildOptions > ;
466466 let stop : BundleResult [ "stop" ] ;
You can’t perform that action at this time.
0 commit comments