fetch-nodeshim 0.2.0-canary-ad700fa870d4ab23c61de81818041156b30e4598 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -1
  2. package/package.json +9 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # minifetch
2
2
 
3
- ## 0.2.0-canary-ad700fa870d4ab23c61de81818041156b30e4598
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
+
10
+ ## 0.2.0
4
11
 
5
12
  ### Minor Changes
6
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fetch-nodeshim",
3
- "version": "0.2.0-canary-ad700fa870d4ab23c61de81818041156b30e4598",
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",