Update bun minor+patch updates to v3.10.1 - abandoned #48

Open
renovate-bot wants to merge 30 commits from renovate/bun-minor-patch into master
Showing only changes of commit adf571fb73 - Show all commits
+5 -3
View File
@@ -148,9 +148,11 @@ export const make = Effect.fnUntraced(function* <A, I = A, R = never, TER = neve
const issuesLens = Lens.fromSubscriptionRef(yield* SubscriptionRef.make<readonly ParseResult.ArrayFormatterIssue[]>(Array.empty()))
const validationFiberLens = Lens.fromSubscriptionRef(yield* SubscriptionRef.make(Option.none<Fiber.Fiber<A, ParseResult.ParseError>>()))
const isCommittingLens = Lens.fromSubscriptionRef(yield* SubscriptionRef.make(false))
const initialEncodedValue = yield* Lens.get(options.target).pipe(
Effect.flatMap(Schema.encode(options.schema, { errors: "all" })),
)
const initialEncodedValue = options.initialEncodedValue ?? (yield* Effect.flatMap(
Lens.get(options.target),
Schema.encode(options.schema, { errors: "all" }),
))
return new SynchronizedFormImpl(
options.schema,