( input: BundleInput, backend?: BundleBackend, )
| 35 | }); |
| 36 | |
| 37 | export const bundleEntry = ( |
| 38 | input: BundleInput, |
| 39 | backend?: BundleBackend, |
| 40 | ): Effect.Effect<BundleOutput, AppExecutorError> => |
| 41 | backend |
| 42 | ? backend.bundle(input) |
| 43 | : defaultBundleBackend().pipe(Effect.flatMap((resolved) => resolved.bundle(input))); |