-
Notifications
You must be signed in to change notification settings - Fork 927
Disable Fetch for ReactNative #5643
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
🦋 Changeset detectedLatest commit: d1d3f28 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
@@ -20,7 +20,7 @@ | |||
"dev": "rollup -c -w", | |||
"lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'", | |||
"lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'", | |||
"prettier": "prettier --write '*.js' '*.ts' '@(lite|src|test)/**/*.ts'", | |||
"prettier": "prettier --write '*.js' '@(lite|src|test)/**/*.ts'", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prettier fails since there are no *.ts files at the root anymore.
Binary Size ReportAffected SDKs
Test Logs |
Is the comment incorrect? Should it say |
Yeah, it should be the other way around. Let me fix the discription. |
We have to use XHR instead of Fetch for ReactNative since
response.blob
is not supported (see facebook/react-native#27741)Addresses #1674