MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / bundleEntry

Function bundleEntry

packages/plugins/apps/src/pipeline/bundle.ts:37–43  ·  view source on GitHub ↗
(
  input: BundleInput,
  backend?: BundleBackend,
)

Source from the content-addressed store, hash-verified

35 });
36
37export 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)));

Callers 6

bundleFunction · 0.90
bundleFunction · 0.90
bundleFunction · 0.90
publishFunction · 0.90

Calls 1

defaultBundleBackendFunction · 0.85

Tested by 2

bundleFunction · 0.72
bundleFunction · 0.72