Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kingdutch/urql-suspense-demo
https://github.com/kingdutch/urql-suspense-demo
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kingdutch/urql-suspense-demo
- Owner: Kingdutch
- Created: 2020-12-10T12:37:09.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-10T12:43:02.000Z (about 4 years ago)
- Last Synced: 2024-11-07T22:49:25.306Z (3 months ago)
- Language: HTML
- Size: 220 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Demo for https://github.com/FormidableLabs/reason-urql/issues/232
Run `yarn start` to test
The problem does not exist when the `package.json` does not contain the resolutions line, since this will install an extra copy of `wonka` (@4) in the `urql` folder. However, this might cause issues when something in the application actually uses the other installation of wonka.
To reveal the problem, adding the following snippet to package.json will force yarn to install only the version 5 of Wonka.
```
"resolutions": {
"wonka": "5.0.0-rc.1"
}
```