Braden Kelley

Results 68 comments of Braden Kelley

@phu1710 would you mind taking a look at #1661 to see if that helps? Looks like it was over 2 years ago when I made the PR, so it's been...

What's the downside to letting `FormSpy` have direct access to `form` (the `formApi`)? If we could get access to that, we could `submit` directly from there. We could also access...

As a workaround, I installed `nodemon` as a dev dependency and added a `build:watch` script to `package.json`: ``` nodemon -w src -x 'rm .babelrc &> /dev/null; nwb build-react-component --no-demo' ```...

I think this is fixed in `2.0.0b6`, but appears to be broken with `pydantic_dataclasses` enabled. AFAICT it's doing some extra validation twice - once when creating the Message, and once...

If the latest beta seems stable enough, would there be any opposition to publishing a v2 soon, and pushing any other breaking changes into v3? @terax6669 would a fix for...

I'm just upgrading from around 1.0.30 to 1.1.1 and noticing this. Previously, opening anything in `bun` would pass env vars along (e.g. when running a script that calls `node`). You...

Still working on getting my dev environment set up to build bun but I was able to write some tests that pass with 1.0.30 and fail with 1.1.5 https://github.com/oven-sh/bun/commit/90d49af21d1d02ac78e7b267bc322b6c3dbb3658

@paperdave I'm working through trying to fix this issue, but would like to hear your thoughts on it. I believe these started breaking between 1.0.35 an 1.0.36, specifically in 1ae9f998f4541c445c522a10a0184dad20ef5cc1...

I see the dilemma though. With something like dotenv it's usually called at the script's entrypoint or explicitly via the CLI. In this case, bun is potentially loading envs before...

I've been playing around with `1.1.6` more today and after converting some scripts from `bun run` and moving that inline shell script to an actual shell script, things seem to...