fetch-nodeshim 0.2.0 → 0.2.1-canary-83f2b69271c3dc3d97aa9c6a60ae2ddbe62a46ae
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# minifetch
|
|
2
2
|
|
|
3
|
+
## 0.2.1-canary-83f2b69271c3dc3d97aa9c6a60ae2ddbe62a46ae
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Provenance Release
|
|
8
|
+
Submitted by [@kitten](https://github.com/kitten) (See [#4](https://github.com/kitten/fetch-nodeshim/pull/4))
|
|
9
|
+
|
|
3
10
|
## 0.2.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fetch-nodeshim",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1-canary-83f2b69271c3dc3d97aa9c6a60ae2ddbe62a46ae",
|
|
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",
|
|
@@ -32,6 +32,10 @@
|
|
|
32
32
|
},
|
|
33
33
|
"keywords": [],
|
|
34
34
|
"license": "MIT",
|
|
35
|
+
"repository": "https://github.com/kitten/fetch-nodeshim",
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/kitten/fetch-nodeshim/issues"
|
|
38
|
+
},
|
|
35
39
|
"devDependencies": {
|
|
36
40
|
"@babel/plugin-transform-block-scoping": "^7.25.9",
|
|
37
41
|
"@babel/plugin-transform-typescript": "^7.26.7",
|
|
@@ -58,6 +62,10 @@
|
|
|
58
62
|
"undici-types": "^6.20.0",
|
|
59
63
|
"vitest": "^3.0.4"
|
|
60
64
|
},
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public",
|
|
67
|
+
"provenance": true
|
|
68
|
+
},
|
|
61
69
|
"scripts": {
|
|
62
70
|
"test": "vitest test",
|
|
63
71
|
"test:run": "vitest test --run",
|