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 c713151efd - Show all commits
+6 -4
View File
@@ -150,10 +150,12 @@ export const make = Effect.fnUntraced(function* <A, I = A, R = never, TER = neve
const validationFiberLens = Lens.fromSubscriptionRef(yield* SubscriptionRef.make(Option.none<Fiber.Fiber<A, ParseResult.ParseError>>())) const validationFiberLens = Lens.fromSubscriptionRef(yield* SubscriptionRef.make(Option.none<Fiber.Fiber<A, ParseResult.ParseError>>()))
const isCommittingLens = Lens.fromSubscriptionRef(yield* SubscriptionRef.make(false)) const isCommittingLens = Lens.fromSubscriptionRef(yield* SubscriptionRef.make(false))
const initialEncodedValue = options.initialEncodedValue ?? (yield* Effect.flatMap( const initialEncodedValue = options.initialEncodedValue !== undefined
Lens.get(options.target), ? options.initialEncodedValue
Schema.encode(options.schema, { errors: "all" }), : yield* Effect.flatMap(
)) Lens.get(options.target),
Schema.encode(options.schema, { errors: "all" }),
)
return new SynchronizedFormImpl( return new SynchronizedFormImpl(
options.schema, options.schema,