Releases: jahands/workers-packages
Releases · jahands/workers-packages
[email protected]
Patch Changes
- 794eb5b: fix: await als.run() for improved stack traces (hopefully)
[email protected]
Patch Changes
- f15b06c: fix example in README
[email protected]
[email protected]
Patch Changes
-
8cd7263: Remove bun from dependencies to speed up pnpm install time
I originally added bun as a dep here for "correctness", but it made pnpm install time ~tripple. We already have bun in
.mise.toml
, which is good enough for me.
@jahands/[email protected]
Patch Changes
-
8cd7263: Remove bun from dependencies to speed up pnpm install time
I originally added bun as a dep here for "correctness", but it made pnpm install time ~tripple. We already have bun in
.mise.toml
, which is good enough for me.
[email protected]
Patch Changes
- 3b5dd29: fix: improve tree-shaking of root import when only importing isNullBodyStatus
[email protected]
Patch Changes
- 24dd518: fix: hardcode null body statuses to improve tree shaking
[email protected]
Minor Changes
-
0194ca5: feat: Add
isNullBodyStatus()
This helper is useful in situations where you need to fetch a resource and then customize the response returned.
Example:
import { httpStatus, isNullBodyStatus } from 'http-codex' const res = await fetch(url) // Might be 204, 304, etc. return new Response(isNullBodyStatus(res.status) ? null : res.body, { // Useful for when we need to customize response headers/init/etc. })
[email protected]
Patch Changes
- b6447f2: chore: update readme to shorten install instructions