feat(util): configure package publishing

This commit is contained in:
Dax Raad 2026-07-21 10:46:43 -04:00
commit 674ed2a8df
33 changed files with 158 additions and 66 deletions

View file

@ -1,6 +1,6 @@
import { Layer, type Context, ManagedRuntime, type Effect } from "effect"
import { memoMap } from "./memo-map"
import { Observability } from "../observability"
import { memoMap } from "./memo-map.js"
import { Observability } from "../observability.js"
export function makeRuntime<I, S, E>(service: Context.Service<I, S>, layer: Layer.Layer<I, E>) {
let rt: ManagedRuntime.ManagedRuntime<I, E> | undefined