Mirror: A Node.js fetch shim using built-in Request, Response, and Headers (but without native fetch)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Version Packages (#3)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
e9e493f8 ad700fa8

+13 -11
-5
.changeset/pink-flowers-wait.md
··· 1 - --- 2 - 'fetch-nodeshim': minor 3 - --- 4 - 5 - Add web standard type/globals re-exports and polyfill `File` from `node:buffer`.
-5
.changeset/pink-papayas-doubt.md
··· 1 - --- 2 - 'fetch-nodeshim': patch 3 - --- 4 - 5 - Add missing constructor type overloads and add missing `Blob` re-export
+12
CHANGELOG.md
··· 1 1 # minifetch 2 2 3 + ## 0.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Add web standard type/globals re-exports and polyfill `File` from `node:buffer` 8 + Submitted by [@kitten](https://github.com/kitten) (See [#1](https://github.com/kitten/fetch-nodeshim/pull/1)) 9 + 10 + ### Patch Changes 11 + 12 + - Add missing constructor type overloads and add missing `Blob` re-export 13 + Submitted by [@kitten](https://github.com/kitten) (See [#2](https://github.com/kitten/fetch-nodeshim/pull/2)) 14 + 3 15 ## 0.1.0 4 16 5 17 Initial Release.
+1 -1
package.json
··· 1 1 { 2 2 "name": "fetch-nodeshim", 3 - "version": "0.1.0", 3 + "version": "0.2.0", 4 4 "description": "A Node.js fetch shim using built-in Request, Response, and Headers (but without native fetch)", 5 5 "author": "Phil Pluckthun <phil@kitten.sh>", 6 6 "source": "./src/index.ts",