Andrei

Results 41 comments of Andrei

Sure, but it's a pretty easy thing to do. Axios throws in all cases except when the response is received and its status code is in 2xx range. `fetch`, on...

> just worried about whether people are relying on the AxiosError interface for error handling Valid concern. You could make it a major version bump to be on the safe...

@yusukebe I looked into it and seems like it would be possible to fix the `@hono/arktype-validator` However, the official ArkType docs [recommend](https://arktype.io/docs/integrations#standard-schema) using Standard Schema for library authors. Made me...

Thank you! Exactly what I was thinking about. As for `arktype-validator`, the only custom logic piece apart from the validation itself is stripping out sensitive fields from the error return...

@mogery understood. Made a new commit bringing back CJS exports but with a simplified workflow using `tsup` (per the [guide by Matt Pocock](https://www.totaltypescript.com/how-to-create-an-npm-package?ck_subscriber_id=2306022541#6-using-tsup-to-dual-publish)) Exports look good: ![CleanShot 2024-09-11 at 17...

I've also had this error on iOS and new architecture while trying to call `captureRef` on a regular `` component. The solution for me was to switch to `` component:...

Same issue when integrating `@sentry/cloudflare` and Hono using `Bun` package manager (in a monorepo). ```ts import * as Sentry from "@sentry/cloudflare"; ``` That's the line that's causing the issue.

@AbhiPrasad exactly. I'm using [Bun package manager](https://bun.sh/docs/cli/install) and its [workspaces](https://bun.sh/docs/cli/install#workspaces) (defined under `workspaces` in `package.json`) Can't provide you with the details for repro, however, I've just tested `@sentry/cloudflare` on a...

> [@AbhiPrasad](https://github.com/AbhiPrasad) I wanted to reproduce, so started a fresh SvelteKit project, created a type that can conflict as it does in my current project. And... no issue. So I...

@AlemTuzlak done