Skip to content

Commit 0698550

Browse files
committed
Remove polyfills and re-exports for built-ins on node >= 18
1 parent 7a8596e commit 0698550

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+27
-1193
lines changed

.changeset/itchy-roses-explode.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"@remix-run/web-fetch": major
3+
"@remix-run/web-file": major
4+
"@remix-run/web-form-data": major
5+
"@remix-run/web-stream": major
6+
---
7+
8+
Remove polyfills / re-exports for built-ins on node >= 18. This includes but not limited to TextEncoder, TextDecoder and Blob.

package.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "@remix-run/web-std-io",
33
"private": true,
44
"workspaces": [
5-
"packages/blob",
65
"packages/file",
76
"packages/form-data",
87
"packages/fetch",
@@ -13,13 +12,11 @@
1312
"release": "changeset publish",
1413
"version-bump": "changeset version",
1514
"postinstall": "manypkg fix",
16-
"prepare": "yarn prepare:blob && yarn prepare:file && yarn prepare:form-data && yarn prepare:fetch",
17-
"prepare:blob": "yarn --cwd packages/blob prepare",
15+
"prepare": "yarn prepare:file && yarn prepare:form-data && yarn prepare:fetch",
1816
"prepare:file": "yarn --cwd packages/file prepare",
1917
"prepare:form-data": "yarn --cwd packages/form-data prepare",
2018
"prepare:fetch": "yarn --cwd packages/fetch prepare",
21-
"test": "yarn test:stream && yarn test:blob && yarn test:file && yarn test:form-data && yarn test:fetch",
22-
"test:blob": "yarn --cwd packages/blob test",
19+
"test": "yarn test:stream && yarn test:file && yarn test:form-data && yarn test:fetch",
2320
"test:file": "yarn --cwd packages/file test",
2421
"test:form-data": "yarn --cwd packages/form-data test",
2522
"test:fetch": "yarn --cwd packages/fetch test",

packages/blob/CHANGELOG.md

-54
This file was deleted.

packages/blob/License.md

-18
This file was deleted.

packages/blob/Readme.md

-75
This file was deleted.

packages/blob/package.json

-69
This file was deleted.

packages/blob/rollup.config.js

-17
This file was deleted.

0 commit comments

Comments
 (0)