-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
breaking: Remove dependency on streams polyfill (#149)
* Remove dependency on streams polyfill * require node v16.7 * change test version * only test ubuntu * remove changelog
- Loading branch information
1 parent
57e4dae
commit a1a182e
Showing
12 changed files
with
65 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "fetch-blob", | ||
"version": "3.1.5", | ||
"version": "4.0.0", | ||
"description": "Blob & File implementation in Node.js, originally from node-fetch.", | ||
"main": "index.js", | ||
"type": "module", | ||
|
@@ -10,8 +10,7 @@ | |
"file.d.ts", | ||
"index.js", | ||
"index.d.ts", | ||
"from.d.ts", | ||
"streams.cjs" | ||
"from.d.ts" | ||
], | ||
"scripts": { | ||
"test": "node --experimental-loader ./test/http-loader.js ./test/test-wpt-in-node.js", | ||
|
@@ -26,7 +25,7 @@ | |
"node-fetch" | ||
], | ||
"engines": { | ||
"node": "^12.20 || >= 14.13" | ||
"node": ">=16.7" | ||
}, | ||
"author": "Jimmy Wärting <[email protected]> (https://jimmy.warting.se)", | ||
"license": "MIT", | ||
|
@@ -35,9 +34,9 @@ | |
}, | ||
"homepage": "https://github.com/node-fetch/fetch-blob#readme", | ||
"devDependencies": { | ||
"@types/node": "^18.0.2", | ||
"c8": "^7.11.0", | ||
"typescript": "^4.5.4" | ||
"@types/node": "^16.5.0", | ||
"c8": "^7.13.0", | ||
"typescript": "^5.0.4" | ||
}, | ||
"funding": [ | ||
{ | ||
|
@@ -50,7 +49,6 @@ | |
} | ||
], | ||
"dependencies": { | ||
"node-domexception": "^1.0.0", | ||
"web-streams-polyfill": "^3.0.3" | ||
"node-domexception": "^1.0.0" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.